1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-07 14:04:48 -04:00

Twemoji-based clothes

- New Emoji-based shirts based on Twemoji because the idea sounded fun. Credits will eventually be added in-game but for now it's in the README.
- For the time being, a few of the ZC's Dress Up-era shirts have pulled because they were never properly ported over during the remaster.
- The train sweater had it's track logo replaced with the train emoji.
- Removed PNG clothing sprites.
- Version label.
This commit is contained in:
Anthony Foxclaw 2020-07-15 13:19:02 -04:00
parent bcaf5680b3
commit bb3f57a1b3
71 changed files with 1861 additions and 1607 deletions

View file

@ -4,6 +4,7 @@
Tony's Dress Up is a re-imagining of my first Flash game, ZC's Dress Up, developed back in 2007. I've included the Flash copies in the ``/archive`` directory. They can be played at [Ruffle](https://ruffle.rs/)'s demo page. Tony's Dress Up is a re-imagining of my first Flash game, ZC's Dress Up, developed back in 2007. I've included the Flash copies in the ``/archive`` directory. They can be played at [Ruffle](https://ruffle.rs/)'s demo page.
## Getting Started ## Getting Started
### Prerequisites ### Prerequisites
@ -12,10 +13,12 @@
## Authors ## Authors
- **Anthony Wilcox** - *Initial work* - [tonytins](https://github.com/tonytins) * **Anthony Wilcox** - *Initial work* - [tonytins](https://github.com/tonytins)
- **Kenney** - *UI assets* - [kenny.nl](https://www.kenney.nl/) * **Kenney** - *UI assets* - [kenny.nl](https://www.kenney.nl/)
* **Twemoji** - *Emojis* - [twemoji.twitter.com](https://twemoji.twitter.com/)
## License
## License
The source and assets are licensed under the MPL 2.0 License and CC-BY, respectfully - see the [LICENSE](LICENSE) and [ASSET-LICENSE](ASSET-LICENSE) for more details. The source and assets are licensed under the MPL 2.0 License and CC-BY, respectfully - see the [LICENSE](LICENSE) and [ASSET-LICENSE](ASSET-LICENSE) for more details.

View file

@ -38,8 +38,11 @@ onready var accessory = $body/accessory
#onready var underwear = $Undies #onready var underwear = $Undies
onready var bottom = $body/legs onready var bottom = $body/legs
onready var top = $body/top onready var top = $body/top
onready var eyes = $body/head/eyes
onready var mouth = $body/head/mouth
func _process(delta): func _process(delta):
if character.accessory != null: if character.accessory != null:
accessory.texture = character.accessory accessory.texture = character.accessory
@ -53,7 +56,7 @@ func _process(delta):
top.texture = character.top top.texture = character.top
" "
[sub_resource type="SpriteFrames" id=2] [sub_resource type="SpriteFrames" id=4]
animations = [ { animations = [ {
"frames": [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ], "frames": [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ],
"loop": true, "loop": true,
@ -61,7 +64,7 @@ animations = [ {
"speed": 2.0 "speed": 2.0
} ] } ]
[sub_resource type="SpriteFrames" id=3] [sub_resource type="SpriteFrames" id=2]
animations = [ { animations = [ {
"frames": [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 12 ) ], "frames": [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 12 ) ],
"loop": true, "loop": true,
@ -69,7 +72,7 @@ animations = [ {
"speed": 2.0 "speed": 2.0
} ] } ]
[sub_resource type="SpriteFrames" id=4] [sub_resource type="SpriteFrames" id=3]
animations = [ { animations = [ {
"frames": [ ExtResource( 13 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 18 ), ExtResource( 19 ), ExtResource( 20 ), ExtResource( 21 ), ExtResource( 22 ), ExtResource( 28 ), ExtResource( 23 ) ], "frames": [ ExtResource( 13 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 18 ), ExtResource( 19 ), ExtResource( 20 ), ExtResource( 21 ), ExtResource( 22 ), ExtResource( 28 ), ExtResource( 23 ) ],
"loop": true, "loop": true,
@ -91,14 +94,10 @@ __meta__ = {
} }
[node name="tail" type="AnimatedSprite" parent="body"] [node name="tail" type="AnimatedSprite" parent="body"]
position = Vector2( -41.9999, 100.157 ) position = Vector2( -33.7592, 99.4079 )
scale = Vector2( 0.927713, 1 ) scale = Vector2( 0.927713, 1 )
frames = SubResource( 2 ) frames = SubResource( 4 )
frame = 1
playing = true playing = true
__meta__ = {
"_edit_lock_": true
}
[node name="legs" type="Sprite" parent="body"] [node name="legs" type="Sprite" parent="body"]
position = Vector2( 1.47027, 192.868 ) position = Vector2( 1.47027, 192.868 )
@ -109,19 +108,19 @@ position = Vector2( 7, 78 )
texture = ExtResource( 25 ) texture = ExtResource( 25 )
[node name="head" type="Sprite" parent="body"] [node name="head" type="Sprite" parent="body"]
position = Vector2( 14.1214, -28.841 ) position = Vector2( 10.6805, -25.1047 )
texture = ExtResource( 27 ) texture = ExtResource( 27 )
[node name="eyes" type="AnimatedSprite" parent="body/head"] [node name="eyes" type="AnimatedSprite" parent="body/head"]
position = Vector2( 17.6857, 4.22147 ) position = Vector2( 17.6857, 4.22147 )
frames = SubResource( 3 ) frames = SubResource( 2 )
frame = 2 frame = 3
playing = true playing = true
[node name="mouth" type="AnimatedSprite" parent="body/head"] [node name="mouth" type="AnimatedSprite" parent="body/head"]
position = Vector2( 38.1195, 8.68453 ) position = Vector2( 38.1195, 8.68453 )
frames = SubResource( 4 ) frames = SubResource( 3 )
frame = 9 frame = 2
playing = true playing = true
[node name="accessory" type="Sprite" parent="body"] [node name="accessory" type="Sprite" parent="body"]

View file

@ -4,11 +4,6 @@
[ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/beat_up_jeans.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/beat_up_jeans.svg" type="Texture" id=3]
[node name="beatUpJeans" instance=ExtResource( 1 )] [node name="beatUpJeans" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 ) texture_normal = ExtResource( 3 )
script = ExtResource( 2 ) script = ExtResource( 2 )

View file

@ -1,15 +1,10 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://sprites/clothes/dj_shorts.svg" type="Texture" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=2] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2]
[ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=3] [ext_resource path="res://sprites/clothes/dj_shorts.svg" type="Texture" id=3]
[node name="camoJeans" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 )
script = ExtResource( 2 )
[node name="camoJeans" instance=ExtResource( 2 )]
texture_normal = ExtResource( 1 )
script = ExtResource( 3 )
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"] [connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]

View file

@ -4,9 +4,6 @@
[ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/formal_skirt.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/formal_skirt.svg" type="Texture" id=3]
[node name="formalSkirt" instance=ExtResource( 1 )] [node name="formalSkirt" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 ) texture_normal = ExtResource( 3 )
script = ExtResource( 2 ) script = ExtResource( 2 )

View file

@ -0,0 +1,10 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/fullsnack_shirt.svg" type="Texture" id=3]
[node name="fullsnackShirt" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 )
script = ExtResource( 2 )
[connection signal="pressed" from="." to="." method="_on_tops_pressed"]

View file

@ -0,0 +1,10 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/skate_shirt.svg" type="Texture" id=3]
[node name="skateShirt" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 )
script = ExtResource( 2 )
[connection signal="pressed" from="." to="." method="_on_tops_pressed"]

View file

@ -0,0 +1,10 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/train_hoodie.svg" type="Texture" id=3]
[node name="trainHoodie" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 )
script = ExtResource( 2 )
[connection signal="pressed" from="." to="." method="_on_tops_pressed"]

View file

@ -40,16 +40,17 @@ __meta__ = {
"_edit_lock_": true, "_edit_lock_": true,
"_edit_use_anchors_": true "_edit_use_anchors_": true
} }
version = "1.5"
[node name="wardrobe" parent="ui/base" instance=ExtResource( 4 )] [node name="wardrobe" parent="ui/base" instance=ExtResource( 4 )]
anchor_left = 0.345 anchor_left = 0.345
anchor_top = 0.072 anchor_top = 0.072
anchor_right = 0.975 anchor_right = 0.975
anchor_bottom = 0.658 anchor_bottom = 0.658
margin_left = -4.69434 margin_left = -5.0
margin_top = -19.9716 margin_top = -20.0
margin_right = 60.3057 margin_right = 60.0
margin_bottom = 75.0284 margin_bottom = 109.0
[node name="clearBtn" type="TextureButton" parent="ui/base"] [node name="clearBtn" type="TextureButton" parent="ui/base"]
margin_left = 752.0 margin_left = 752.0
@ -67,4 +68,18 @@ __meta__ = {
[node name="clear" type="AudioStreamPlayer" parent="ui/base"] [node name="clear" type="AudioStreamPlayer" parent="ui/base"]
stream = ExtResource( 9 ) stream = ExtResource( 9 )
[node name="versionLbl" type="Label" parent="ui/base"]
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -81.0
margin_top = -28.0
text = "[version]"
align = 2
valign = 3
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="ui/base/clearBtn" to="ui/base" method="_on_clearBtn_pressed"] [connection signal="pressed" from="ui/base/clearBtn" to="ui/base" method="_on_clearBtn_pressed"]

View file

@ -1,30 +1,23 @@
[gd_scene load_steps=20 format=2] [gd_scene load_steps=18 format=2]
[ext_resource path="res://scenes/clothing/camera.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/camera.tscn" type="PackedScene" id=1]
[ext_resource path="res://sprites/clothes/retro_shirt.svg" type="Texture" id=2] [ext_resource path="res://sprites/clothes/retro_shirt.svg" type="Texture" id=2]
[ext_resource path="res://scenes/clothing/pants/beatUpJeans.tscn" type="PackedScene" id=3] [ext_resource path="res://scenes/clothing/pants/beat_Jeans.tscn" type="PackedScene" id=3]
[ext_resource path="res://scenes/clothing/pants/jeans.tscn" type="PackedScene" id=4] [ext_resource path="res://scenes/clothing/tops/skate_shirt.tscn" type="PackedScene" id=4]
[ext_resource path="res://scenes/clothing/pants/skirt.tscn" type="PackedScene" id=5] [ext_resource path="res://scenes/clothing/pants/skirt.tscn" type="PackedScene" id=5]
[ext_resource path="res://scenes/clothing/pants/formalSkirt.tscn" type="PackedScene" id=6] [ext_resource path="res://scenes/clothing/pants/formal_skirt.tscn" type="PackedScene" id=6]
[ext_resource path="res://scenes/clothing/pants/camoJeans.tscn" type="PackedScene" id=7] [ext_resource path="res://scenes/clothing/pants/camoJeans.tscn" type="PackedScene" id=7]
[ext_resource path="res://scenes/clothing/pants/djShorts.tscn" type="PackedScene" id=8] [ext_resource path="res://scenes/clothing/pants/dj_shorts.tscn" type="PackedScene" id=8]
[ext_resource path="res://sprites/ui/x_button.svg" type="Texture" id=9] [ext_resource path="res://sprites/ui/x_button.svg" type="Texture" id=9]
[ext_resource path="res://scenes/clothing/tops/whatsnew_shirt.tscn" type="PackedScene" id=10] [ext_resource path="res://scenes/clothing/tops/whatsnew_shirt.tscn" type="PackedScene" id=10]
[ext_resource path="res://scenes/clothing/tops/z_shirt.tscn" type="PackedScene" id=11] [ext_resource path="res://scenes/clothing/tops/fullsnack_shirt.tscn" type="PackedScene" id=11]
[ext_resource path="res://scenes/clothing/tops/rawShirt.tscn" type="PackedScene" id=12] [ext_resource path="res://scenes/clothing/tops/rawShirt.tscn" type="PackedScene" id=12]
[ext_resource path="res://scenes/clothing/tops/korm_shirt.tscn" type="PackedScene" id=13]
[ext_resource path="res://scenes/clothing/tops/djShirt.tscn" type="PackedScene" id=14]
[ext_resource path="res://scenes/clothing/tops/atomic_shirt.tscn" type="PackedScene" id=15] [ext_resource path="res://scenes/clothing/tops/atomic_shirt.tscn" type="PackedScene" id=15]
[ext_resource path="res://scenes/clothing/tops/nl_shirt.tscn" type="PackedScene" id=16]
[ext_resource path="res://scenes/clothing/pants/sweatPants.tscn" type="PackedScene" id=17] [ext_resource path="res://scenes/clothing/pants/sweatPants.tscn" type="PackedScene" id=17]
[ext_resource path="res://scenes/clothing/tops/retro_shirt.tscn" type="PackedScene" id=18] [ext_resource path="res://scenes/clothing/tops/retro_shirt.tscn" type="PackedScene" id=18]
[ext_resource path="res://scenes/clothing/tops/train_hoodie.tscn" type="PackedScene" id=19]
[ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21] [ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21]
[node name="Wordrobe" type="TabContainer"] [node name="Wordrobe" type="TabContainer"]
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 1.0 anchor_bottom = 1.0
@ -61,62 +54,54 @@ size_flags_vertical = 3
columns = 4 columns = 4
[node name="removePants" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] [node name="removePants" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
margin_right = 106.0 margin_right = 113.0
margin_bottom = 134.0 margin_bottom = 128.0
rect_min_size = Vector2( 0, 112 ) rect_min_size = Vector2( 0, 112 )
texture_normal = ExtResource( 9 ) texture_normal = ExtResource( 9 )
[node name="beatUpJeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 3 )] [node name="beatUpJeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 3 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 110.0 margin_left = 117.0
margin_right = 222.0 margin_right = 227.0
margin_bottom = 134.0 margin_bottom = 128.0
[node name="jeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 4 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 226.0
margin_right = 337.0
margin_bottom = 134.0
[node name="camoJeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 7 )] [node name="camoJeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 7 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 341.0 margin_left = 231.0
margin_right = 451.0 margin_right = 342.0
margin_bottom = 134.0 margin_bottom = 128.0
[node name="sweatPants" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 17 )] [node name="sweatPants" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 17 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_top = 138.0 margin_left = 346.0
margin_right = 106.0 margin_right = 457.0
margin_bottom = 270.0 margin_bottom = 128.0
[node name="camoJeans2" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 8 )] [node name="camoJeans2" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 8 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 110.0 margin_top = 132.0
margin_top = 138.0 margin_right = 113.0
margin_right = 222.0 margin_bottom = 264.0
margin_bottom = 270.0
[node name="formalSkirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 6 )] [node name="formalSkirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 6 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 226.0 margin_left = 117.0
margin_top = 138.0 margin_top = 132.0
margin_right = 337.0 margin_right = 227.0
margin_bottom = 270.0 margin_bottom = 264.0
[node name="skirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 5 )] [node name="skirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 5 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 341.0 margin_left = 231.0
margin_top = 138.0 margin_top = 132.0
margin_right = 451.0 margin_right = 342.0
margin_bottom = 270.0 margin_bottom = 264.0
[node name="Shirts" type="Tabs" parent="."] [node name="Shirts" type="Tabs" parent="."]
visible = false visible = false
@ -142,68 +127,61 @@ columns = 4
[node name="removeShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="removeShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_right = 106.0 margin_right = 106.0
margin_bottom = 115.0 margin_bottom = 113.0
rect_min_size = Vector2( 0, 112 ) rect_min_size = Vector2( 0, 112 )
texture_normal = ExtResource( 9 ) texture_normal = ExtResource( 9 )
[node name="djShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 14 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 110.0
margin_right = 216.0
margin_bottom = 115.0
[node name="kormShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 13 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 220.0
margin_right = 326.0
margin_bottom = 115.0
[node name="atomicShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 15 )] [node name="atomicShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 15 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 330.0 margin_left = 110.0
margin_right = 436.0 margin_right = 216.0
margin_bottom = 115.0 margin_bottom = 113.0
[node name="nlShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 16 )] [node name="skateShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 4 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_top = 119.0 margin_left = 220.0
margin_right = 106.0 margin_right = 326.0
margin_bottom = 234.0 margin_bottom = 113.0
[node name="fullsnackShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 11 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 330.0
margin_right = 436.0
margin_bottom = 113.0
[node name="rawShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 12 )] [node name="rawShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 12 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 110.0 margin_top = 117.0
margin_top = 119.0 margin_right = 106.0
margin_right = 216.0 margin_bottom = 229.0
margin_bottom = 234.0
[node name="zShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 11 )] [node name="trainHoodie" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 19 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 220.0 margin_left = 110.0
margin_top = 119.0 margin_top = 117.0
margin_right = 326.0 margin_right = 216.0
margin_bottom = 234.0 margin_bottom = 229.0
[node name="whatsNewShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 10 )] [node name="whatsNewShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 10 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 330.0 margin_left = 220.0
margin_top = 119.0 margin_top = 117.0
margin_right = 436.0 margin_right = 326.0
margin_bottom = 234.0 margin_bottom = 229.0
[node name="retroShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 18 )] [node name="retroShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 18 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_top = 238.0 margin_left = 330.0
margin_right = 106.0 margin_top = 117.0
margin_bottom = 353.0 margin_right = 436.0
margin_bottom = 229.0
texture_normal = ExtResource( 2 ) texture_normal = ExtResource( 2 )
[node name="Accessoires" type="Tabs" parent="."] [node name="Accessoires" type="Tabs" parent="."]
@ -229,13 +207,13 @@ size_flags_vertical = 3
columns = 3 columns = 3
[node name="removeAccessory" type="TextureButton" parent="Accessoires/AccsScroll/AccsGrid"] [node name="removeAccessory" type="TextureButton" parent="Accessoires/AccsScroll/AccsGrid"]
margin_left = 89.0 margin_right = 106.0
margin_right = 195.0
margin_bottom = 112.0 margin_bottom = 112.0
texture_normal = ExtResource( 9 ) texture_normal = ExtResource( 9 )
[node name="camera" parent="Accessoires/AccsScroll/AccsGrid" instance=ExtResource( 1 )] [node name="camera" parent="Accessoires/AccsScroll/AccsGrid" instance=ExtResource( 1 )]
margin_right = 85.0 margin_left = 110.0
margin_right = 195.0
margin_bottom = 112.0 margin_bottom = 112.0
[connection signal="pressed" from="Pants/PantsScroll/PantsGrid/removePants" to="." method="_on_removePants_pressed"] [connection signal="pressed" from="Pants/PantsScroll/PantsGrid/removePants" to="." method="_on_removePants_pressed"]
[connection signal="pressed" from="Shirts/ShirtsScroll/ShirtsGrid/removeShirt" to="." method="_on_removeShirt_pressed"] [connection signal="pressed" from="Shirts/ShirtsScroll/ShirtsGrid/removeShirt" to="." method="_on_removeShirt_pressed"]

View file

@ -1,10 +1,16 @@
extends Control extends Control
export var version: String = "1.0.0"
onready var character = preload("res://resources/character.tres") onready var character = preload("res://resources/character.tres")
onready var blank_accessory = preload("res://sprites/clothes/blank_top.png") onready var blank_accessory = preload("res://sprites/clothes/blank_top.png")
onready var base_top = preload("res://sprites/character_base_top.svg") onready var base_top = preload("res://sprites/character_base_top.svg")
onready var base_bottom = preload("res://sprites/character_base_legs.svg") onready var base_bottom = preload("res://sprites/character_base_legs.svg")
func _ready():
var verLabel = $versionLbl
verLabel.text = "v" + version
func _on_clearBtn_pressed(): func _on_clearBtn_pressed():
$clear.play() $clear.play()
character.accessory = blank_accessory character.accessory = blank_accessory

View file

@ -45,10 +45,8 @@ func check_for_dlc(dlc_pack):
# Lists the files in each of their respective directories # Lists the files in each of their respective directories
var shirts_dir = "res://scenes/dlc/shirts/" var shirts_dir = "res://scenes/dlc/shirts/"
var pants_dir = "res://scenes/dlc/pants/" var pants_dir = "res://scenes/dlc/pants/"
# var undies_dir = "res://scenes/dlc/undies/"
var dlc_shirts = list_files_in_directory(shirts_dir) var dlc_shirts = list_files_in_directory(shirts_dir)
var dlc_pants = list_files_in_directory(pants_dir) var dlc_pants = list_files_in_directory(pants_dir)
# var dlc_undies = list_files_in_directory(undies_dir)
# Make sure each file actually exist, instance them # Make sure each file actually exist, instance them
# and add them to their respective tabs # and add them to their respective tabs
@ -63,15 +61,9 @@ func check_for_dlc(dlc_pack):
var init = load(pants_dir + pants).instance() var init = load(pants_dir + pants).instance()
shirts_grid.add_child(init) shirts_grid.add_child(init)
print_debug("Initialized: " + pants_dir + pants) print_debug("Initialized: " + pants_dir + pants)
# for undies in dlc_undies:
# if dir.file_exists(undies_dir + undies):
# var init = load(undies_dir + undies).instance()
# shirts_grid.add_child(init)
# print_debug("Initialized: " + undies_dir + undies)
func _ready(): func _ready():
# check_for_dlc("testdlc.pck") check_for_dlc("emojidlc.pck")
pass pass
func _on_removeAccessory_pressed(): func _on_removeAccessory_pressed():

View file

@ -31,11 +31,11 @@
fit-margin-left="0" fit-margin-left="0"
fit-margin-top="0" fit-margin-top="0"
showgrid="false" showgrid="false"
inkscape:current-layer="layer3" inkscape:current-layer="layer2"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:cy="144.59338" inkscape:cy="116.76192"
inkscape:cx="57.651847" inkscape:cx="99.955459"
inkscape:zoom="2.8" inkscape:zoom="11.2"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
borderopacity="1.0" borderopacity="1.0"
@ -50,7 +50,7 @@
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title />
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
@ -72,10 +72,10 @@
d="m 12.756696,20.042186 c -3.0330485,3.485978 -6.9287479,8.842867 -10.6778266,9.780135 5.411336,2.216856 13.7737856,1.25077 18.6153276,-3.590773 -1.673498,-3.036966 -4.542199,-5.822302 -7.937501,-6.189362 z" d="m 12.756696,20.042186 c -3.0330485,3.485978 -6.9287479,8.842867 -10.6778266,9.780135 5.411336,2.216856 13.7737856,1.25077 18.6153276,-3.590773 -1.673498,-3.036966 -4.542199,-5.822302 -7.937501,-6.189362 z"
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
sodipodi:nodetypes="cccccccscccccccccc" sodipodi:nodetypes="cccccccsczcccccccc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path831-5" id="path831-5"
d="m 34.726561,20.939881 c 1.424506,0.409095 2.905617,0.519717 4.441219,0.519717 -0.631436,0.891699 -1.802839,1.33673 -2.834817,1.795387 0.679627,2.000634 1.918615,4.085352 2.55134,6.236608 -0.196308,-1.699022 -1.726382,-2.566554 -2.976563,-3.449034 -1.289203,1.845106 -2.413179,3.349977 -4.441222,4.110492 -0.02396,-1.807178 -0.561611,-3.490928 -2.102492,-4.464845 -1.266898,0.154353 -2.719548,0.200395 -2.62221,1.063057 0.225306,1.996779 2.11006,3.490086 2.11006,3.490086 l -8.724644,-0.182793 c 0,0 2.139782,-5.92446 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586536 -1.417411,3.023812 -1.143466,-0.96755 -1.993973,-1.935806 -2.315104,-3.449035 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176 8.399753,-4.993925 13.806413,-4.295882 18.993302,-0.425223 z" d="m 34.726561,20.939881 c 1.424506,0.409095 2.905617,0.519717 4.441219,0.519717 -0.631436,0.891699 -1.802839,1.33673 -2.834817,1.795387 0.679627,2.000634 1.918615,4.085352 2.55134,6.236608 -0.196308,-1.699022 -1.726382,-2.566554 -2.976563,-3.449034 -1.289203,1.845106 -2.413179,3.349977 -4.441222,4.110492 -0.02396,-1.807178 -0.561611,-3.490928 -2.102492,-4.464845 -1.266898,0.154353 -2.719548,0.200395 -2.62221,1.063057 0.225306,1.996779 1.30686,2.63964 1.30686,2.63964 0,0 -8.345508,0.489002 -7.070998,-0.277287 1.27451,-0.766289 1.029477,-3.184133 -3.16555,-3.401786 -1.654478,0.194645 -1.540993,1.586536 -1.417411,3.023812 -1.143466,-0.96755 -1.993973,-1.935806 -2.315104,-3.449035 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176 8.399753,-4.993925 13.806413,-4.295882 18.993302,-0.425223 z"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
sodipodi:nodetypes="cccc" sodipodi:nodetypes="cccc"
@ -131,7 +131,7 @@
sodipodi:nodetypes="cccccccsccccccccc" sodipodi:nodetypes="cccccccsccccccccc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path831" id="path831"
d="m 34.726562,20.939881 c 1.424506,0.409095 2.905615,0.519717 4.441219,0.519717 -0.631435,0.891699 -1.802841,1.33673 -2.83482,1.795387 0.679627,2.000634 1.918617,4.085351 2.55134,6.236607 -0.196308,-1.69902 -1.726382,-2.566552 -2.976563,-3.449033 -1.289202,1.845105 -2.41318,3.349976 -4.44122,4.110491 -0.02396,-1.807178 -0.561611,-3.490926 -2.102492,-4.464844 -1.266898,0.154353 -2.347681,0.239471 -2.62221,1.063059 -0.342642,1.027925 -0.123795,3.337174 2.207894,3.621326 m -8.822478,-0.314035 c 2.922238,-0.08554 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586537 -1.417411,3.02381 -1.143466,-0.967549 -1.993973,-1.935805 -2.315104,-3.449033 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176" d="m 34.726562,20.939881 c 1.424506,0.409095 2.905615,0.519717 4.441219,0.519717 -0.631435,0.891699 -1.802841,1.33673 -2.83482,1.795387 0.679627,2.000634 1.918617,4.085351 2.55134,6.236607 -0.196308,-1.69902 -1.726382,-2.566552 -2.976563,-3.449033 -1.289202,1.845105 -2.41318,3.349976 -4.44122,4.110491 -0.02396,-1.807178 -0.561611,-3.490926 -2.102492,-4.464844 -1.266898,0.154353 -2.347681,0.239471 -2.62221,1.063059 -0.342642,1.027925 -0.599606,1.694028 1.30686,2.639638 M 20.457961,29.20811 c 2.922238,-0.08554 0.01367,-4.318062 -2.645833,-3.49628 -1.654478,0.194645 -1.540993,1.586537 -1.417411,3.02381 -1.143466,-0.967549 -1.993973,-1.935805 -2.315104,-3.449033 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
inkscape:connector-curvature="0" inkscape:connector-curvature="0"

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -24,8 +24,8 @@
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="5.6" inkscape:zoom="5.6"
inkscape:cx="80.553227" inkscape:cx="134.93017"
inkscape:cy="59.753864" inkscape:cy="43.549062"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer2" inkscape:current-layer="layer2"
showgrid="false" showgrid="false"
@ -50,7 +50,7 @@
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title />
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
@ -61,6 +61,7 @@
transform="translate(-113.05078,-148.95219)" transform="translate(-113.05078,-148.95219)"
style="display:inline" /> style="display:inline" />
<g <g
sodipodi:insensitive="true"
transform="translate(-36.472798,-45.646095)" transform="translate(-36.472798,-45.646095)"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer3" id="layer3"
@ -72,72 +73,56 @@
inkscape:label="Re-ink" inkscape:label="Re-ink"
style="display:inline"> style="display:inline">
<g <g
style="display:inline" inkscape:label="Layer 1"
id="g5165" id="layer1-0"
transform="translate(36.472798,44.717653)"> transform="translate(-48.000601,-87.118817)"
<g style="display:inline" />
style="display:inline" <path
transform="translate(-84.473399,-131.83647)" sodipodi:nodetypes="ccczccccc"
id="layer1-0" inkscape:connector-curvature="0"
inkscape:label="Layer 1" /> id="path831-5"
<g d="m 57.527089,46.559873 c 1.635877,2.807358 3.434163,11.019746 2.186079,19.813197 -0.03749,2.612124 -0.948812,7.588671 -0.948812,8.244208 0,0 -3.899134,0.09989 -7.229493,0.03625 -3.330358,-0.06364 -4.796869,0.06737 -8.216413,0.06336 0.02949,-1.657652 -5.397636,-4.790926 -2.267857,-8.343822 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 3.827799,-0.363949 5.983656,0.09357 8.822478,0.314042 z"
inkscape:label="Color" style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
id="layer3-1" <path
transform="translate(-7.8954188,-28.530371)"> sodipodi:nodetypes="scscszs"
<path inkscape:connector-curvature="0"
sodipodi:nodetypes="ccczcccccc" id="path847"
inkscape:connector-curvature="0" d="m 45.302825,53.002162 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -4.579576,2.614718 -4.156248,4.060169 0.59027,2.01547 5.980039,4.399895 6.424105,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
id="path831-5" style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
d="m 28.94971,30.372591 c 1.635877,2.807358 3.434163,11.019746 2.186079,19.813197 -0.03749,2.612124 -0.948812,7.588671 -0.948812,8.244208 0,0 -3.899134,0.09989 -7.229493,0.03625 -3.330358,-0.06364 -4.796869,0.06737 -8.216413,0.06336 0.02949,-1.657652 -5.3976359,-4.790926 -2.267857,-8.343822 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.923695,-0.409606 4.488693,-0.526788 8.822478,0.314035 z" <path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> sodipodi:nodetypes="cssccc"
<path inkscape:connector-curvature="0"
sodipodi:nodetypes="scscszs" id="path853"
inkscape:connector-curvature="0" d="m 56.524303,46.501874 c 0.397347,2.617171 0.696988,4.977253 0.637523,8.106686 -0.07867,4.140228 1.866261,13.489026 1.866261,13.489026 0.739806,0.173775 1.252045,-13.016551 1.252045,-13.016551 l -2.753043,-8.521162 c 0,0 -0.262351,-0.114351 -1.002786,-0.058 z"
id="path847" style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
d="m 16.725446,36.81488 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -4.5795761,2.614718 -4.1562481,4.060169 0.59027,2.01547 5.9800391,4.399895 6.4241051,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z" <g
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> transform="translate(28.577379,16.187282)"
<path id="layer2-2"
sodipodi:nodetypes="czcsc" inkscape:label="Re-ink"
inkscape:connector-curvature="0" style="display:inline">
id="path849" <path
d="m 27.061041,29.785424 c 0,0 2.289171,3.879041 2.043123,8.635854 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 -2.739511,-0.80718 -2.739511,-0.80718 z" sodipodi:nodetypes="cc"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path905"
<path d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
sodipodi:nodetypes="sssccs" style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
inkscape:connector-curvature="0" <path
id="path853" style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 26.44683,30.125603 c 1.452313,2.918211 2.197082,5.166242 2.137617,8.295675 -0.07867,4.140228 1.866261,13.489026 1.866261,13.489026 0.739806,0.173775 1.252045,-13.016551 1.252045,-13.016551 l -1.792544,-7.594071 c 0,0 -4.132854,-2.519292 -3.463379,-1.174079 z" d="m 26.888591,30.314592 c 0.477754,0.05822 2.484723,0.06781 3.008871,1.963701 0.524148,1.895893 1.626594,5.736094 1.771708,7.334938 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path831"
</g> inkscape:connector-curvature="0"
<g sodipodi:nodetypes="cssc" />
style="display:inline" <path
inkscape:label="Re-ink" style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="layer2-2" d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
transform="translate(-7.8954188,-28.530371)"> id="path856"
<path inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccccc" />
d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486" <path
id="path905" style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /> d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
<path id="path858"
sodipodi:nodetypes="cac" inkscape:connector-curvature="0"
inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
id="path831"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path856"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path858"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.9 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/atomic_shirt.png-e1562af2eed6677399909eaf790f9e4c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/atomic_shirt.png"
dest_files=[ "res://.import/atomic_shirt.png-e1562af2eed6677399909eaf790f9e4c.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -9,38 +7,39 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22.489584mm" sodipodi:docname="atomic_shirt.svg"
height="30.427084mm" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
viewBox="0 0 22.489584 30.427084"
version="1.1"
id="svg8" id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)" version="1.1"
sodipodi:docname="atomic_shirt.svg"> viewBox="0 0 24.504625 30.060329"
height="30.060329mm"
width="24.504625mm">
<defs <defs
id="defs2" /> id="defs2" />
<sodipodi:namedview <sodipodi:namedview
id="base" inkscape:document-rotation="0"
pagecolor="#ffffff" inkscape:window-maximized="1"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="66.109402"
inkscape:cy="50.591263"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9" inkscape:window-y="-9"
inkscape:window-maximized="1" /> inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
showgrid="false"
inkscape:current-layer="layer2"
inkscape:document-units="mm"
inkscape:cy="34.344389"
inkscape:cx="145.69655"
inkscape:zoom="3.959798"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata <metadata
id="metadata5"> id="metadata5">
<rdf:RDF> <rdf:RDF>
@ -54,68 +53,117 @@
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<g <g
inkscape:label="Layer 1" sodipodi:insensitive="true"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-332.89496,-265.48813)"
style="display:inline" style="display:inline"
sodipodi:insensitive="true" /> transform="translate(-329.6421,-264.65994)"
<g id="layer1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" inkscape:label="Layer 1">
inkscape:label="Re-ink"
transform="translate(-108.95163,-14.177885)"
style="display:inline">
<path <path
style="opacity:1;fill:#003333;fill-opacity:1;stroke:#000000;stroke-width:0.84448189px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="ccczccccc"
d="m 111.2673,16.788005 c -0.92152,4.271598 -1.10981,11.545021 -0.89428,15.292256 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -1.07895,6.609747 -0.15778,9.186161 0.93166,2.605817 14.62642,1.077743 16.78107,-1.314586 0.81011,-0.899459 -1.46175,-2.48188 -0.78906,-6.214168 0.67269,-3.732287 0.63838,-17.327085 -1.84118,-18.354603 -2.47958,-1.027521 -2.20097,1.046255 -6.20744,-0.05405 -1.05993,-1.401319 -10.12597,-1.967194 -10.57366,0.108076 z"
id="path827"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="csssszzcsc" /> id="path831-5"
d="m 350.69639,265.92482 c 1.63588,2.80736 3.43416,11.01975 2.18608,19.8132 -0.0375,2.61212 -0.94881,7.58867 -0.94881,8.24421 0,0 -3.89914,0.0999 -7.2295,0.0362 -3.33035,-0.0636 -4.79686,0.0674 -8.21641,0.0634 0.0295,-1.65765 -5.39763,-4.79092 -2.26786,-8.34382 0,-5.16744 -0.34224,-10.51911 0.47247,-15.44977 0.25453,-4.32698 4.8557,-2.93307 7.18155,-4.67746 3.8278,-0.36395 5.98366,0.0936 8.82248,0.31404 z"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.47876143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="scscszs"
d="M 114.37102,34.484873 114.5288,21.056867"
id="path829"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> id="path847"
d="m 338.47213,272.36711 c 0.26042,-2.55677 3.98794,-6.62318 3.98794,-6.62318 0,0 -4.51113,-0.37829 -5.87993,1.06908 -4.36812,4.61883 -2.36025,18.92501 -2.36025,18.92501 0,0 -4.57957,2.61472 -4.15624,4.06017 0.59027,2.01547 5.98004,4.39989 6.4241,2.69615 0.44407,-1.70374 1.28661,-13.27669 1.98438,-20.12723 z"
style="display:inline;fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.47876143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cssccc"
d="m 127.1015,24.947476 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
id="path833"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" /> id="path853"
d="m 349.6936,265.86682 c 0.39735,2.61717 0.69699,4.97725 0.63753,8.10669 -0.0787,4.14023 1.86626,13.48902 1.86626,13.48902 0.7398,0.17378 1.25204,-13.01655 1.25204,-13.01655 l -2.75304,-8.52116 c 0,0 -0.26235,-0.11435 -1.00279,-0.058 z"
style="display:inline;fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g <g
transform="translate(321.74668,235.55223)"
id="layer2-2"
inkscape:label="Re-ink"
style="display:inline">
<path
sodipodi:nodetypes="cc"
id="path905"
d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
id="path856"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
id="path858"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
style="display:inline"
transform="translate(-105.69877,-13.349696)"
inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="csssszzcsc"
inkscape:connector-curvature="0"
id="path827"
d="m 110.93657,16.551768 c -0.92152,4.271598 -1.10981,11.545021 -0.89428,15.292256 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -3.61605,9.121676 -0.89277,9.386613 4.80707,0.467661 11.68645,0.543204 15.11063,0.155397 1.20281,-0.136225 0.94368,-4.152315 1.61637,-7.884603 0.67269,-3.732287 -0.32626,-19.210241 -2.80582,-20.237759 -2.47958,-1.027521 -2.50586,0.791255 -6.51233,-0.30905 -1.05993,-1.401319 -8.85644,0.170962 -9.30413,2.246232 z"
style="opacity:1;fill:#003333;fill-opacity:1;stroke:#000000;stroke-width:0.844482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path829"
d="M 114.04029,34.248636 114.19807,20.82063"
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="czc"
inkscape:connector-curvature="0"
id="path833"
d="m 126.77077,24.711239 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="translate(-0.59800253,-1.3053151)"
id="g886"> id="g886">
<ellipse <ellipse
ry="0.96885204" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.15;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="0.95214766"
cy="28.401752"
cx="121.36296"
id="path848" id="path848"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.14999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> cx="121.36296"
cy="28.401752"
rx="0.95214766"
ry="0.96885204" />
<ellipse <ellipse
ry="5.8494253" style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="2.358217"
cy="28.26812"
cx="121.26273"
id="path850" id="path850"
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> cx="121.26273"
cy="28.26812"
rx="2.358217"
ry="5.8494253" />
<ellipse <ellipse
transform="rotate(-43.01527)" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
ry="5.8494253"
rx="2.3582172"
cy="103.27947"
cx="69.600197"
id="path850-0" id="path850-0"
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> cx="69.600197"
<ellipse cy="103.27947"
transform="rotate(46.575687)"
ry="5.8494253"
rx="2.3582172" rx="2.3582172"
cy="-68.645317" ry="5.8494253"
cx="103.66148" transform="rotate(-43.01527)" />
<ellipse
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path850-0-1" id="path850-0-1"
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> cx="103.66148"
cy="-68.645317"
rx="2.3582172"
ry="5.8494253"
transform="rotate(46.575687)" />
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/biker_jacket.png-49a94ec6ef89c92948186608cc0de2ea.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/biker_jacket.png"
dest_files=[ "res://.import/biker_jacket.png-49a94ec6ef89c92948186608cc0de2ea.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/blue_camo_jeans.png-5ecdedc43f67022a5b8fca3601587a75.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/blue_camo_jeans.png"
dest_files=[ "res://.import/blue_camo_jeans.png-5ecdedc43f67022a5b8fca3601587a75.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/briefs.png-f2fba0226797db266d542131d9f44a11.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/briefs.png"
dest_files=[ "res://.import/briefs.png-f2fba0226797db266d542131d9f44a11.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/briefs_classic.png-2ce669e823e59b371b99b2a937ab4263.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/classic/briefs_classic.png"
dest_files=[ "res://.import/briefs_classic.png-2ce669e823e59b371b99b2a937ab4263.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/camera_classic.png-390efe87cd947affce3f4778f00b583b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/classic/camera_classic.png"
dest_files=[ "res://.import/camera_classic.png-390efe87cd947affce3f4778f00b583b.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/fundosi_classic.png-2471228693a783e3dc3309151fc92092.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/classic/fundosi_classic.png"
dest_files=[ "res://.import/fundosi_classic.png-2471228693a783e3dc3309151fc92092.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/owo_censor_classic.png-1e98f07ed783bcc8b8f9ab01b6c21ef8.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/classic/owo_censor_classic.png"
dest_files=[ "res://.import/owo_censor_classic.png-1e98f07ed783bcc8b8f9ab01b6c21ef8.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/z_briefs_classic.png-10d3d58b4454e62be8efb64c0a2e448e.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/classic/z_briefs_classic.png"
dest_files=[ "res://.import/z_briefs_classic.png-10d3d58b4454e62be8efb64c0a2e448e.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -7,13 +7,13 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)" version="1.1"
sodipodi:docname="dj_shorts.svg"
viewBox="0 0 113.25831 125.01931"
height="125.01931"
width="113.25831"
id="svg815" id="svg815"
version="1.1"> width="113.25831"
height="125.01931"
viewBox="0 0 113.25831 125.01931"
sodipodi:docname="dj_shorts.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
<metadata <metadata
id="metadata821"> id="metadata821">
<rdf:RDF> <rdf:RDF>
@ -22,162 +22,160 @@
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title />
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs819" /> id="defs819" />
<sodipodi:namedview <sodipodi:namedview
inkscape:document-rotation="0" pagecolor="#ffffff"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
inkscape:current-layer="layer1"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:cy="33.621506"
inkscape:cx="90.608354"
inkscape:zoom="3.607143"
showgrid="false"
id="namedview817"
inkscape:window-height="1001"
inkscape:window-width="1920"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666" bordercolor="#666666"
pagecolor="#ffffff" /> borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview817"
showgrid="false"
inkscape:zoom="10.202541"
inkscape:cx="98.573183"
inkscape:cy="50.799978"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="layer2"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:document-rotation="0" />
<g <g
style="display:inline" sodipodi:insensitive="true"
transform="translate(7.6590499,-5.4233452)" inkscape:groupmode="layer"
inkscape:label="Original"
id="layer1" id="layer1"
inkscape:groupmode="layer"> inkscape:label="Original"
transform="translate(7.6590499,-5.4233452)"
style="display:inline">
<path <path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cccccccc"
d="m 91.17402,5.5626896 c 0.46767,35.9439984 6.03109,49.1450874 3.39286,89.5714244 22.63588,28.809296 -20.65944,34.987876 -31.9643,6.785726 0,-18.695576 0.23222,-40.851826 0.17859,-59.464294 C 51.246889,59.756965 39.07726,86.078284 33.13831,107.09841 56.067895,141.49279 -1.914904,127.92508 -5.254547,107.8127 13.980845,84.138364 30.488695,35.572955 32.79579,5.9391683 56.132741,5.2425186 65.83986,5.7289896 91.17402,5.5626896 Z" inkscape:connector-curvature="0"
id="path831-5" id="path831-5"
inkscape:connector-curvature="0" d="m 91.17402,5.5626896 c 0.46767,35.9439984 6.03109,49.1450874 3.39286,89.5714244 22.63588,28.809296 -20.65944,34.987876 -31.9643,6.785726 0,-18.695576 0.23222,-40.851826 0.17859,-59.464294 C 51.246889,59.756965 39.07726,86.078284 33.13831,107.09841 56.067895,141.49279 -1.914904,127.92508 -5.254547,107.8127 13.980845,84.138364 30.488695,35.572955 32.79579,5.9391683 56.132741,5.2425186 65.83986,5.7289896 91.17402,5.5626896 Z"
sodipodi:nodetypes="cccccccc" /> style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="zczczzcczscz"
d="m 30.674024,8.169838 c -1.994154,9.574556 24.365212,24.613795 33.714286,30.178579 17.9205,-5.863786 26.66898,-15.930082 28.75,-28.928572 2.08102,-12.9984904 1.42857,85.714269 1.42857,85.714269 0,0 10.12468,15.999566 2.14286,21.785736 -7.98181,5.78617 -28.86863,-0.79571 -34.10716,-15.00001 -5.238522,-14.204306 1.78573,-63.571423 1.78573,-63.571423 l -31.25,68.749983 c 0,0 10.612785,15.78741 1.25,21.78573 -9.362786,5.99833 -44.611028,-14.148 -39.642857,-21.07143 12.328877,-17.180986 31.25,-69.374996 31.25,-69.374996 0,0 6.672726,-39.8424224 4.678571,-30.267866 z" inkscape:connector-curvature="0"
id="path857" id="path857"
inkscape:connector-curvature="0" d="m 30.674024,8.169838 c -1.994154,9.574556 24.365212,24.613795 33.714286,30.178579 17.9205,-5.863786 26.66898,-15.930082 28.75,-28.928572 2.08102,-12.9984904 1.42857,85.714269 1.42857,85.714269 0,0 10.12468,15.999566 2.14286,21.785736 -7.98181,5.78617 -28.86863,-0.79571 -34.10716,-15.00001 -5.238522,-14.204306 1.78573,-63.571423 1.78573,-63.571423 l -31.25,68.749983 c 0,0 10.612785,15.78741 1.25,21.78573 -9.362786,5.99833 -44.611028,-14.148 -39.642857,-21.07143 12.328877,-17.180986 31.25,-69.374996 31.25,-69.374996 0,0 6.672726,-39.8424224 4.678571,-30.267866 z"
sodipodi:nodetypes="zczczzcczscz" /> style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccccccc"
d="m 91.17402,5.5626896 c -0.19321,34.6047114 6.03109,49.1450834 3.39286,89.5714244 22.63587,28.809296 -20.65944,34.987866 -31.9643,6.785716 0,-18.695566 0.23222,-40.851816 0.17859,-59.464284 C 51.246889,59.756969 39.07726,86.078284 33.13831,107.0984 56.067895,141.49279 -1.914902,127.92508 -5.254548,107.81269 13.980845,84.138364 32.363696,32.090808 32.79579,5.9391683" inkscape:connector-curvature="0"
id="path831" id="path831"
inkscape:connector-curvature="0" d="m 91.17402,5.5626896 c -0.19321,34.6047114 6.03109,49.1450834 3.39286,89.5714244 22.63587,28.809296 -20.65944,34.987866 -31.9643,6.785716 0,-18.695566 0.23222,-40.851816 0.17859,-59.464284 C 51.246889,59.756969 39.07726,86.078284 33.13831,107.0984 56.067895,141.49279 -1.914902,127.92508 -5.254548,107.81269 13.980845,84.138364 32.363696,32.090808 32.79579,5.9391683"
sodipodi:nodetypes="ccccccc" /> style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
id="path3894" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 40.660268,12.698439 10.095524,9.899495" d="m 40.660268,12.698439 10.095524,9.899495"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path3894" />
<path <path
id="path3896" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 82.610602,9.4639512 76.23964,19.167417" d="M 82.610602,9.4639512 76.23964,19.167417"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path3896" />
<path <path
sodipodi:nodetypes="ccccc" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path3900"
d="m 61.359454,10.952431 c 1.695362,2.584202 2.533515,0.427596 4.816188,1.157737 -2.055795,1.154981 -2.441879,2.636708 -4.705474,2.646859 1.778709,0.992537 0.357817,3.842463 1.956894,4.771002 -2.47447,1.154839 -1.926432,-1.412419 -4.431659,-1.653742" d="m 61.359454,10.952431 c 1.695362,2.584202 2.533515,0.427596 4.816188,1.157737 -2.055795,1.154981 -2.441879,2.636708 -4.705474,2.646859 1.778709,0.992537 0.357817,3.842463 1.956894,4.771002 -2.47447,1.154839 -1.926432,-1.412419 -4.431659,-1.653742"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path3900"
sodipodi:nodetypes="ccccc" />
</g> </g>
<g <g
transform="translate(7.055088,-3.8985927)" inkscape:groupmode="layer"
sodipodi:insensitive="true"
inkscape:label="Color"
id="layer3" id="layer3"
inkscape:groupmode="layer"> inkscape:label="Color"
transform="translate(7.055088,-3.8985927)">
<path <path
sodipodi:nodetypes="ssscsssss" style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:2.64567;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" d="M 32.974478,11.892929 C 27.892309,8.8651065 10.439356,71.859082 8.3487755,82.882932 c -0.796543,4.20025 40.8650145,14.03508 46.1264725,1.25568 2.572162,-6.24744 13.861385,-39.089108 13.861385,-39.089108 0,0 -10.724331,38.354248 -5.128712,43.663368 4.527582,4.29576 34.983259,-2.41573 36.732673,-9.42574 C 102.66076,68.387252 96.65377,16.078352 95.643564,8.1782169 95.385101,6.1569519 92.505753,3.7763701 91.200954,5.3415589 81.345543,17.163745 40.066901,16.118408 32.974478,11.892929 Z"
id="path842-9" id="path842-9"
d="M 32.974478,11.892929 C 27.892309,8.8651065 13.57583,72.83923 11.485249,83.86308 c -0.796543,4.20025 37.728541,13.054932 42.989999,0.275532 2.572162,-6.24744 13.861385,-39.089108 13.861385,-39.089108 0,0 -10.724331,38.354248 -5.128712,43.663368 4.527582,4.29576 34.983259,-2.41573 36.732673,-9.42574 C 102.66076,68.387252 96.65377,16.078352 95.643564,8.1782169 95.385101,6.1569519 92.505753,3.7763701 91.200954,5.3415589 81.345543,17.163745 40.066901,16.118408 32.974478,11.892929 Z"
style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:2.64567;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="sccss"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path854" sodipodi:nodetypes="ssscsssss" />
<path
style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 28.835569,26.074735 c 7.560103,23.666394 37.20214,24.101791 37.20214,24.101791 l -2.703816,11.830238 c 0,0 -37.056397,-7.153127 -38.476332,-23.905761 -0.356605,-4.207284 1.637558,-19.352888 3.978008,-12.026268 z" d="m 28.835569,26.074735 c 7.560103,23.666394 37.20214,24.101791 37.20214,24.101791 l -2.703816,11.830238 c 0,0 -37.056397,-7.153127 -38.476332,-23.905761 -0.356605,-4.207284 1.637558,-19.352888 3.978008,-12.026268 z"
style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path854"
<path
sodipodi:nodetypes="sccas"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path854-2" sodipodi:nodetypes="sccss" />
<path
style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 24.254346,44.833977 c 7.560103,23.666394 36.516036,20.45146 36.516036,20.45146 l -2.84243,11.55301 c 0,0 -32.610284,-6.935031 -37.790228,-20.25543 -1.504021,-3.867641 1.776172,-19.07566 4.116622,-11.74904 z" d="m 24.254346,44.833977 c 7.560103,23.666394 36.516036,20.45146 36.516036,20.45146 l -2.84243,11.55301 c 0,0 -32.610284,-6.935031 -37.790228,-20.25543 -1.504021,-3.867641 1.776172,-19.07566 4.116622,-11.74904 z"
style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path854-2"
<path
sodipodi:nodetypes="csscc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path938" sodipodi:nodetypes="sccas" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 67.50495,49.623762 c 0,0 26.680952,-6.998162 31.188119,-15.663366 1.949711,-3.748386 0.587416,4.47474 0.831683,9.148514 0.318216,6.08876 -34.099009,17.603961 -34.099009,17.603961 z" d="m 67.50495,49.623762 c 0,0 26.680952,-6.998162 31.188119,-15.663366 1.949711,-3.748386 0.587416,4.47474 0.831683,9.148514 0.318216,6.08876 -34.099009,17.603961 -34.099009,17.603961 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path938"
<path
sodipodi:nodetypes="csscc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path938-9" sodipodi:nodetypes="csscc" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06606px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.332489,67.435529 c 0,0 29.511212,-7.404035 35.44475,-15.663366 2.468641,-3.436279 -0.19874,6.097672 1.001951,10.257425 1.94564,6.740614 -38.809683,14.554456 -38.809683,14.554456 z" d="m 64.332489,67.435529 c 0,0 29.511212,-7.404035 35.44475,-15.663366 2.468641,-3.436279 -0.19874,6.097672 1.001951,10.257425 1.94564,6.740614 -38.809683,14.554456 -38.809683,14.554456 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06606px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> id="path938-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscc" />
</g> </g>
<g <g
transform="translate(7.055088,-3.8985927)" inkscape:groupmode="layer"
sodipodi:insensitive="true"
style="display:inline"
inkscape:label="Re-ink"
id="layer2" id="layer2"
inkscape:groupmode="layer"> inkscape:label="Re-ink"
style="display:inline"
transform="translate(7.055088,-3.8985927)">
<path <path
sodipodi:nodetypes="ssscssszs" style="fill:none;stroke:#000000;stroke-width:3.02362205;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" d="M 32.19036,12.383003 C 27.814906,10.066328 10.733401,71.761066 8.6428199,82.784913 7.8462769,86.985166 49.21379,96.918009 54.475248,84.138614 57.04741,77.891169 68.336633,45.049505 68.336633,45.049505 c 0,0 -10.724331,38.354249 -5.128712,43.663366 4.527582,4.295765 34.983259,-2.415733 36.732673,-9.425742 C 102.66076,68.387255 96.66427,16.077003 95.643564,8.1782178 95.091057,3.9026122 91.285705,4.1044003 85.418081,9.5561956 79.550457,15.007991 40.166495,16.606136 32.19036,12.383003 Z"
id="path842" id="path842"
d="M 32.19036,12.383003 C 27.814906,10.066328 13.57583,72.349155 11.485249,83.373002 10.688706,87.573255 49.21379,96.918009 54.475248,84.138614 57.04741,77.891169 68.336633,45.049505 68.336633,45.049505 c 0,0 -10.724331,38.354249 -5.128712,43.663366 4.527582,4.295765 34.983259,-2.415733 36.732673,-9.425742 C 102.66076,68.387255 96.66427,16.077003 95.643564,8.1782178 95.091057,3.9026122 91.285705,4.1044003 85.418081,9.5561956 79.550457,15.007991 40.166495,16.606136 32.19036,12.383003 Z"
style="fill:none;stroke:#000000;stroke-width:2.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="czc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path957" sodipodi:nodetypes="ssscssszs" />
d="m 67.504951,47.128713 c 0,0 3.999326,-8.830457 4.158415,-15.386139 0.159089,-6.555682 -2.495049,-17.188119 -2.495049,-17.188119"
style="fill:none;stroke:#000000;stroke-width:2.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<ellipse <ellipse
ry="5.6358509" style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.51181;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="7.6451545"
cy="21.361532"
cx="66.488861"
id="path852" id="path852"
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.51181;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> cx="66.488861"
cy="21.361532"
rx="7.6451545"
ry="5.6358509" />
<path <path
sodipodi:nodetypes="csccsc" sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0" id="path1467"
id="path844" d="m 45.774887,30.656633 c 5.765933,10.261732 18.111032,6.487256 22.561746,14.392872 5.018629,-9.486699 16.747225,-5.015627 19.388589,-15.56905"
style="fill:none;stroke:#000000;stroke-width:3.02362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.51181;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 27.235088,27.527733 C 18.253381,26.665769 5.4320913,49.597184 18.614856,53.99144 c 12.991966,4.330655 43.94592,-17.067986 47.740585,-22.315637 -1.835821,-2.596141 -5.694488,-6.6466 -7.762376,-9.009901 -3.875759,2.600135 -28.365736,21.34457 -34.104781,18.475047 -2.028226,-1.014113 1.80693,-11.921442 2.746804,-13.613216 z" d="M 27.235088,27.527733 C 18.253381,26.665769 5.4320913,49.597184 18.614856,53.99144 c 12.991966,4.330655 43.94592,-17.067986 47.740585,-22.315637 -1.835821,-2.596141 -5.694488,-6.6466 -7.762376,-9.009901 -3.875759,2.600135 -28.365736,21.34457 -34.104781,18.475047 -2.028226,-1.014113 1.80693,-11.921442 2.746804,-13.613216 z"
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.51181;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path844"
<path
sodipodi:nodetypes="ccczcsc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path850" sodipodi:nodetypes="csccsc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.51861;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 58.707896,21.043134 c -6.86408,14.982581 55.765564,33.20927 45.638714,-5.750085 -1.54752,-7.1735659 -7.430997,-8.3143675 -9.836898,-9.3740972 -0.637929,4.6451152 3.216803,11.5036772 2.634997,17.5760972 -0.581806,6.07242 -22.848135,10.178732 -23.09001,-1.41231 -0.331483,3.253131 -6.569759,5.839391 -9.542442,4.366336 -1.904124,-0.943552 -4.487512,-3.937729 -5.804361,-5.405941 z" d="m 58.707896,21.043134 c -6.86408,14.982581 55.765564,33.20927 45.638714,-5.750085 -1.54752,-7.1735659 -7.430997,-8.3143675 -9.836898,-9.3740972 -0.637929,4.6451152 3.216803,11.5036772 2.634997,17.5760972 -0.581806,6.07242 -22.848135,10.178732 -23.09001,-1.41231 -0.331483,3.253131 -6.569759,5.839391 -9.542442,4.366336 -1.904124,-0.943552 -4.487512,-3.937729 -5.804361,-5.405941 z"
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.51861;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path850"
<path
sodipodi:nodetypes="zcczz"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path959" sodipodi:nodetypes="ccczcsc" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 46.60381,15.485843 c -2.80724,-0.03648 -18.470967,4.785414 -18.470967,4.785414 l -1.247525,2.633664 c 0,0 19.019981,-6.208471 22.767997,-6.587395 3.748016,-0.378924 -0.242265,-0.795202 -3.049505,-0.831683 z" d="m 46.60381,15.485843 c -2.80724,-0.03648 -18.470967,4.785414 -18.470967,4.785414 l -1.247525,2.633664 c 0,0 19.019981,-6.208471 22.767997,-6.587395 3.748016,-0.378924 -0.242265,-0.795202 -3.049505,-0.831683 z"
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path959"
<path
sodipodi:nodetypes="zcczz"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path959-8" sodipodi:nodetypes="zcczz" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 84.772232,11.287132 c 2.80724,-0.03648 11.021841,5.863576 11.021841,5.863576 l 1.247525,2.633664 c 0,0 -11.570855,-7.286633 -15.318871,-7.665557 -3.748016,-0.378925 0.242265,-0.795203 3.049505,-0.831683 z" d="m 84.772232,11.287132 c 2.80724,-0.03648 11.021841,5.863576 11.021841,5.863576 l 1.247525,2.633664 c 0,0 -11.570855,-7.286633 -15.318871,-7.665557 -3.748016,-0.378925 0.242265,-0.795203 3.049505,-0.831683 z"
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path959-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zcczz" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -9,39 +7,40 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="28.045834mm" sodipodi:docname="formal_skirt.svg"
height="29.633333mm" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
viewBox="0 0 28.045834 29.633333"
version="1.1"
id="svg2007" id="svg2007"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)" version="1.1"
sodipodi:docname="formal_skirt.svg"> viewBox="0 0 29.356469 33.543056"
height="33.543056mm"
width="29.356468mm">
<defs <defs
id="defs2001" /> id="defs2001" />
<sodipodi:namedview <sodipodi:namedview
id="base" inkscape:document-rotation="0"
pagecolor="#ffffff" inkscape:window-maximized="1"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="78.143852"
inkscape:cy="66.534399"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
showguides="false"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="1911"
inkscape:window-y="-9" inkscape:window-y="-9"
inkscape:window-maximized="1" /> inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
showguides="false"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
showgrid="false"
inkscape:current-layer="layer2"
inkscape:document-units="mm"
inkscape:cy="77.928918"
inkscape:cx="160.81686"
inkscape:zoom="2.8"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata <metadata
id="metadata2004"> id="metadata2004">
<rdf:RDF> <rdf:RDF>
@ -55,19 +54,40 @@
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<g <g
inkscape:label="Layer 1" sodipodi:insensitive="true"
inkscape:groupmode="layer" transform="translate(-79.002062,-134.0157)"
id="layer1" id="layer1"
transform="translate(-78.959229,-134.01666)" />
<g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" inkscape:label="Layer 1">
inkscape:label="Re-ink">
<path <path
style="fill:#001638;fill-opacity:1;stroke:#000000;stroke-width:0.99800003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10.089425,2.5388847 26.192414,0.50095454 c 0,0 1.102652,8.28470726 1.570209,16.00276246 C 27.656283,19.926163 3.3037072,19.798673 3.7417734,18.675282 8.4283356,8.7037569 10.089425,2.5388847 10.089425,2.5388847 Z" d="m 105.15164,134.5176 c 0.12374,9.51018 1.59574,13.00297 0.8977,23.69911 5.98908,7.62246 -5.46615,9.2572 -8.45722,1.79539 0,-4.94654 0.06144,-10.80872 0.04725,-15.73327 -3.051778,4.57767 -6.271659,11.54186 -7.843006,17.10343 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.26383 9.457066,-19.11343 10.067485,-26.95404 6.174568,-0.18432 8.74291,-0.0556 15.445901,-0.0996 z"
id="path824" id="path831-5"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" /> sodipodi:nodetypes="cccccccc" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 89.144355,135.20741 c -0.52762,2.53327 6.446629,6.5124 8.920238,7.98475 4.741467,-1.55146 7.056167,-4.21484 7.606767,-7.65402 0.5506,-3.43919 0.37798,22.67857 0.37798,22.67857 0,0 2.67883,4.23321 0.56697,5.76414 -2.11186,1.53092 -7.638163,-0.21053 -9.02419,-3.96875 -1.386027,-3.75823 0.472473,-16.81994 0.472473,-16.81994 l -8.268229,18.1901 c 0,0 2.807966,4.17708 0.330729,5.76414 -2.477237,1.58706 -11.803334,-3.74333 -10.488839,-5.57515 3.262015,-4.5458 8.268229,-18.35547 8.268229,-18.35547 0,0 1.765492,-10.54164 1.237872,-8.00837 z"
id="path857"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zczczzcczscz" />
<path
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 105.15164,134.5176 c -0.0511,9.15583 1.59574,13.00297 0.8977,23.69911 5.98908,7.62246 -5.46615,9.2572 -8.45722,1.79538 0,-4.94653 0.06144,-10.8087 0.04725,-15.73326 -3.051778,4.57767 -6.271659,11.54185 -7.843006,17.10343 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.26384 9.95316,-20.03475 10.067485,-26.95404"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
</g>
<g
transform="translate(-0.04283344,9.5633398e-4)"
inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path824"
d="M 10.74651,0.60055 26.192414,0.5009545 c 0,0 1.197146,11.5919985 1.664703,19.3100545 C 27.750777,23.233455 2.6422489,21.310578 3.0803151,20.187187 7.7668773,10.215662 10.74651,0.60055 10.74651,0.60055 Z"
style="fill:#001638;fill-opacity:1;stroke:#000000;stroke-width:0.998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -0,0 +1,261 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="fullsnack_shirt.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 24.636646 29.835097"
height="29.835096mm"
width="24.636646mm">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="16.861876"
inkscape:cx="57.951723"
inkscape:zoom="11.2"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(-329.97283,-265.24728)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
transform="translate(329.97283,264.31884)"
id="g5165"
style="display:inline">
<g
inkscape:label="Layer 1"
id="layer1-0"
transform="translate(-84.473399,-131.83647)"
style="display:inline" />
<g
transform="translate(-7.8954188,-28.530371)"
id="layer3-1"
inkscape:label="Color">
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.94971,30.372591 c 1.635877,2.807358 3.434163,11.019746 2.186079,19.813197 -0.03749,2.612124 -0.948812,7.588671 -0.948812,8.244208 0,0 -3.899134,0.09989 -7.229493,0.03625 -3.330358,-0.06364 -4.796869,0.06737 -8.216413,0.06336 0.02949,-1.657652 -5.3976359,-4.790926 -2.267857,-8.343822 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.923695,-0.409606 4.488693,-0.526788 8.822478,0.314035 z"
id="path831-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccczcccccc" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.725446,36.81488 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -4.5795761,2.614718 -4.1562481,4.060169 0.59027,2.01547 5.9800391,4.399895 6.4241051,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
id="path847"
inkscape:connector-curvature="0"
sodipodi:nodetypes="scscszs" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27.746123,29.879918 c -2.953319,-0.167836 1.604089,3.784547 1.358041,8.54136 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 -1.103416,-0.65864 -2.054429,-0.712686 z"
id="path849"
inkscape:connector-curvature="0"
sodipodi:nodetypes="szcss" />
</g>
<g
transform="translate(-7.8954188,-28.530371)"
id="layer2-2"
inkscape:label="Re-ink"
style="display:inline">
<path
sodipodi:nodetypes="cc"
id="path905"
d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 2.647247,-4.225527 5.173549,-4.29948"
id="path856"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
id="path858"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</g>
<g
sodipodi:insensitive="true"
style="display:inline"
transform="translate(-106.0295,-13.937037)"
inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="csssszzcsc"
inkscape:connector-curvature="0"
id="path827-1"
d="m 111.2673,15.729671 c -0.92152,4.271598 -1.10981,11.545021 -0.89428,15.292256 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -4.00328,10.311165 -1.2883,10.650772 4.80707,0.601296 12.1488,0.265189 16.17434,-0.189436 1.20285,-0.135844 0.2755,-5.071641 0.94819,-8.803929 0.67269,-3.732287 0.55569,-18.343536 -1.92387,-19.371054 -2.47958,-1.027521 -2.11828,2.062706 -6.12475,0.962401 -2.64074,-0.614126 -10.12597,-1.967194 -10.57366,0.108076 z"
style="display:inline;opacity:1;fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:0.844482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path829-0"
d="M 114.37102,33.426539 114.5288,19.998533"
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="czc"
inkscape:connector-curvature="0"
id="path833-5"
d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path829"
d="M 114.37102,33.426539 114.5288,19.998533"
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="czc"
inkscape:connector-curvature="0"
id="path833"
d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g1537"
transform="matrix(0.37565234,0.1881546,-0.17456175,0.34851411,91.177397,1.2162896)">
<path
style="stroke-width:0.264583"
id="path1468"
d="m 103.73439,28.434599 c -0.27675,1.658937 -2.04311,2.76516 -4.562738,2.76516 -2.519627,0 -4.285721,-1.106223 -4.562211,-2.76516 -0.06535,-0.391319 0.04127,-2.148417 0.278871,-2.488671 0.677069,-0.969433 0.919163,2.742406 4.28334,2.742406 3.663688,0 3.608918,-3.711575 4.285988,-2.742406 0.23759,0.340254 0.34184,2.097352 0.27675,2.488671 z"
fill="#ffac33" />
<path
style="stroke-width:0.264583"
id="path1470"
d="m 99.171652,23.790103 c -2.468827,0 -4.470136,1.21285 -4.470136,2.709069 0,1.496219 2.001309,2.709333 4.470136,2.709333 2.468558,0 4.470138,-1.213114 4.470138,-2.709333 0,-1.496219 -2.00158,-2.709069 -4.470138,-2.709069 z m 0,3.538538 c -0.839788,0 -1.520825,-0.185738 -1.520825,-0.414867 0,-0.229129 0.681037,-0.414602 1.520825,-0.414602 0.839518,0 1.520558,0.185473 1.520558,0.414602 2.7e-4,0.229129 -0.68077,0.414867 -1.520558,0.414867 z"
fill="#8a4b38" />
<path
style="stroke-width:0.264583"
id="path1472"
d="m 94.839893,26.072928 c -0.172773,0.27649 -0.243416,1.453621 0.126736,2.004748 0.564621,0.841375 0.84111,0.414602 1.255977,0.541602 0.617802,0.189177 0.663575,0.677333 1.151996,0.921544 0.552979,0.276489 0.874712,0.196056 1.658937,0 1.106221,-0.27649 1.808961,0.287866 2.488411,0 0.55747,-0.236273 0.8763,-1.094581 1.18692,-1.198034 0.98636,-0.328612 1.19459,-1.884891 0.46064,-2.523331 -0.23019,0.483923 -1.35943,2.223559 -2.08519,2.304521 -0.72601,0.0807 -2.903533,0.264583 -3.825077,-0.207433 -0.921808,-0.472282 -1.854729,-1.059921 -1.970087,-1.221317 -0.115359,-0.16166 -0.449263,-0.6223 -0.449263,-0.6223 z"
fill="#8a4b38" />
<path
style="stroke-width:0.264583"
id="path1474"
d="m 99.171652,25.876872 c -0.992717,0 -1.797315,0.324908 -1.797315,0.725752 0,0.155839 0.122502,0.299773 0.329406,0.418042 -0.03334,-0.03413 -0.05292,-0.06985 -0.05292,-0.106892 0,-0.229129 0.681037,-0.414602 1.520825,-0.414602 0.839522,0 1.520562,0.185473 1.520562,0.414602 0,0.03704 -0.0193,0.0725 -0.0529,0.106892 0.2069,-0.118269 0.32967,-0.262203 0.32967,-0.418042 2.6e-4,-0.400844 -0.8046,-0.725752 -1.797322,-0.725752 z"
fill="#f4900c" />
<path
style="stroke-width:0.264583"
id="path1476"
d="m 95.554268,27.006113 a 0.276225,0.276225 0 0 1 -0.129381,-0.520964 l 0.610658,-0.322792 a 0.27596041,0.27596041 0 0 1 0.373592,0.115359 c 0.07144,0.134937 0.01984,0.302418 -0.115358,0.373591 l -0.610659,0.322792 a 0.27648958,0.27648958 0 0 1 -0.128852,0.03201 z m 3.145102,2.062163 c -0.108479,0 -0.211402,-0.06403 -0.255587,-0.170921 l -0.195792,-0.472546 a 0.27648958,0.27648958 0 1 1 0.510646,-0.211402 l 0.195792,0.472546 a 0.276225,0.276225 0 0 1 -0.255059,0.382323 z"
fill="#f4abba" />
<path
style="stroke-width:0.264583"
id="path1478"
d="m 101.8331,27.962318 a 0.276225,0.276225 0 0 1 -0.2376,-0.417248 l 0.29951,-0.506942 a 0.27650215,0.27650215 0 0 1 0.47598,0.281517 l -0.29951,0.506677 c -0.0516,0.08731 -0.14366,0.135996 -0.23838,0.135996 z"
fill="#55acee" />
<path
style="stroke-width:0.264583"
id="path1480"
d="m 102.294,25.908093 c -0.14817,0 -0.27067,-0.127265 -0.27596,-0.276755 a 0.2809875,0.2809875 0 0 1 0.26643,-0.291041 l 0.32227,-0.01376 c 0.15531,-0.0019 0.28098,0.112713 0.28601,0.265378 0.006,0.152664 -0.11403,0.289983 -0.26643,0.295275 l -0.32227,0.0209 z m -2.672557,-1.091142 a 0.27675416,0.27675416 0 0 1 -0.08361,-0.540279 l 0.218546,-0.06906 a 0.27668249,0.27668249 0 0 1 0.166952,0.527579 l -0.218546,0.06906 a 0.27728333,0.27728333 0 0 1 -0.08334,0.0127 z"
fill="#f4abba" />
<path
style="stroke-width:0.264583"
id="path1482"
d="m 98.088447,25.266213 c -0.04154,0 -0.08361,-0.0095 -0.123295,-0.0291 l -0.207434,-0.103716 a 0.27675416,0.27675416 0 0 1 0.247121,-0.494771 l 0.207433,0.103716 a 0.27675416,0.27675416 0 0 1 -0.123825,0.523875 z m 2.408233,3.513667 a 0.2778125,0.2778125 0 0 1 -0.12303,-0.02884 l -0.20743,-0.103453 a 0.27648958,0.27648958 0 0 1 0.24633,-0.495035 l 0.20743,0.103452 a 0.27648958,0.27648958 0 0 1 -0.1233,0.523876 z"
fill="#88c9f9" />
<path
style="stroke-width:0.264583"
id="path1484"
d="m 96.878772,28.169751 a 0.27648958,0.27648958 0 0 1 -0.254,-0.385498 l 0.103717,-0.241829 a 0.27652519,0.27652519 0 1 1 0.508265,0.218017 l -0.103717,0.241829 c -0.04498,0.10451 -0.146844,0.167481 -0.254265,0.167481 z m 4.125388,-2.615406 a 0.276225,0.276225 0 0 1 -0.11113,-0.529961 l 0.18415,-0.0807 c 0.14023,-0.06138 0.30321,0.0026 0.36407,0.142346 a 0.27701875,0.27701875 0 0 1 -0.14235,0.364331 l -0.18415,0.0807 a 0.27516666,0.27516666 0 0 1 -0.11059,0.02328 z m -4.493423,-0.01138 c -0.02064,0 -0.04154,-0.0024 -0.06218,-0.0071 l -0.149754,-0.0344 a 0.27675416,0.27675416 0 0 1 0.124089,-0.538956 l 0.149755,0.0344 a 0.27675416,0.27675416 0 0 1 -0.06191,0.5461 z"
fill="#55acee" />
</g>
<g
style="font-style:normal;font-weight:normal;font-size:2.11667px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="text1543"
transform="rotate(26.605111)"
aria-label="fullsnack( )">
<path
id="path1559"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 114.81883,-28.736828 v -0.557388 h -0.13829 v -0.09737 h 0.13829 v -0.05927 q 0,-0.0762 0.0212,-0.125588 0.0212,-0.0508 0.055,-0.08185 0.0353,-0.03104 0.0804,-0.04374 0.0466,-0.0127 0.0974,-0.0127 0.0508,0 0.1016,0.01129 0.0522,0.01129 0.0974,0.02681 l -0.0212,0.100189 q -0.031,-0.01552 -0.0776,-0.02681 -0.0466,-0.01129 -0.0945,-0.01129 -0.0296,0 -0.0564,0.0085 -0.0254,0.0071 -0.0452,0.02681 -0.0198,0.01835 -0.031,0.0508 -0.0113,0.03104 -0.0113,0.07902 v 0.05785 h 0.26388 v 0.09737 h -0.26388 v 0.557388 z" />
<path
id="path1561"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 115.90256,-28.755172 q -0.0381,0.0099 -0.1016,0.02117 -0.0621,0.01129 -0.14675,0.01129 -0.0748,0 -0.12418,-0.02117 -0.0494,-0.02258 -0.0804,-0.06209 -0.0311,-0.04092 -0.0438,-0.09596 -0.0127,-0.05503 -0.0127,-0.121355 v -0.3683 h 0.11571 v 0.3429 q 0,0.121355 0.0353,0.172155 0.0367,0.0508 0.12136,0.0508 0.0183,0 0.0367,-0.0014 0.0198,-0.0014 0.0367,-0.0028 0.0169,-0.0028 0.0296,-0.0042 0.0127,-0.0028 0.0169,-0.0042 v -0.553155 h 0.11712 z" />
<path
id="path1563"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 116.47971,-28.721306 q -0.0621,0 -0.10301,-0.01693 -0.0409,-0.01693 -0.0649,-0.0508 -0.024,-0.03387 -0.0339,-0.08326 -0.01,-0.0508 -0.01,-0.117123 v -0.619477 h -0.18909 v -0.09878 h 0.3048 v 0.718255 q 0,0.04939 0.006,0.08043 0.007,0.03104 0.0198,0.0508 0.0141,0.01834 0.0339,0.0254 0.0198,0.0071 0.0466,0.0071 0.0409,0 0.0762,-0.0099 0.0353,-0.0099 0.055,-0.02117 l 0.0169,0.09878 q -0.008,0.0042 -0.024,0.01129 -0.0155,0.0056 -0.0367,0.01129 -0.0212,0.0056 -0.0466,0.0099 -0.024,0.0042 -0.0508,0.0042 z" />
<path
id="path1565"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 117.18526,-28.721306 q -0.0621,0 -0.10301,-0.01693 -0.0409,-0.01693 -0.0649,-0.0508 -0.024,-0.03387 -0.0339,-0.08326 -0.01,-0.0508 -0.01,-0.117123 v -0.619477 h -0.18909 v -0.09878 h 0.3048 v 0.718255 q 0,0.04939 0.006,0.08043 0.007,0.03104 0.0198,0.0508 0.0141,0.01834 0.0339,0.0254 0.0198,0.0071 0.0466,0.0071 0.0409,0 0.0762,-0.0099 0.0353,-0.0099 0.055,-0.02117 l 0.0169,0.09878 q -0.008,0.0042 -0.024,0.01129 -0.0155,0.0056 -0.0367,0.01129 -0.0212,0.0056 -0.0466,0.0099 -0.024,0.0042 -0.0508,0.0042 z" />
<path
id="path1567"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 117.90916,-28.900517 q 0,-0.03528 -0.0296,-0.05785 -0.0282,-0.02258 -0.072,-0.03951 -0.0423,-0.01693 -0.0931,-0.03246 -0.0508,-0.01693 -0.0945,-0.04092 -0.0423,-0.02399 -0.072,-0.05927 -0.0282,-0.03528 -0.0282,-0.09172 0,-0.07902 0.0635,-0.131233 0.0649,-0.05362 0.20178,-0.05362 0.0536,0 0.11007,0.0085 0.0579,0.0071 0.0988,0.01975 l -0.0212,0.104422 q -0.0113,-0.0056 -0.031,-0.01129 -0.0198,-0.0071 -0.0452,-0.01129 -0.0254,-0.0056 -0.055,-0.0085 -0.0282,-0.0028 -0.055,-0.0028 -0.1524,0 -0.1524,0.08325 0,0.02963 0.0282,0.0508 0.0296,0.01976 0.0734,0.03669 0.0437,0.01693 0.0945,0.03528 0.0508,0.01693 0.0945,0.04233 0.0438,0.0254 0.072,0.06209 0.0296,0.03528 0.0296,0.09031 0,0.0889 -0.0691,0.138289 -0.0691,0.04798 -0.21872,0.04798 -0.0677,0 -0.12418,-0.01129 -0.0564,-0.01129 -0.10724,-0.03387 l 0.0226,-0.105833 q 0.0494,0.02258 0.10301,0.0381 0.055,0.01411 0.11713,0.01411 0.15945,0 0.15945,-0.08043 z" />
<path
id="path1569"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 118.21961,-29.373238 q 0.0635,-0.01552 0.12558,-0.02399 0.0635,-0.0085 0.11854,-0.0085 0.13123,0 0.19755,0.06773 0.0677,0.06773 0.0677,0.217311 v 0.383822 h -0.11571 v -0.362655 q 0,-0.0635 -0.0113,-0.103011 -0.0113,-0.03951 -0.0325,-0.06068 -0.0198,-0.02258 -0.0494,-0.03104 -0.0282,-0.0085 -0.0621,-0.0085 -0.0282,0 -0.0607,0.0042 -0.031,0.0028 -0.0607,0.0085 v 0.553155 h -0.11712 z" />
<path
id="path1571"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 119.18481,-28.820083 q 0.0437,0 0.0776,-0.0028 0.0353,-0.0028 0.0578,-0.0071 v -0.194733 q -0.0226,-0.0071 -0.055,-0.01129 -0.0311,-0.0042 -0.0663,-0.0042 -0.0325,0 -0.0635,0.0056 -0.031,0.0042 -0.055,0.01693 -0.024,0.0127 -0.0395,0.03387 -0.0155,0.01975 -0.0155,0.0508 0,0.0635 0.0423,0.0889 0.0438,0.02399 0.11713,0.02399 z m -0.0113,-0.587022 q 0.0734,0 0.12276,0.01834 0.0508,0.01835 0.0819,0.0508 0.031,0.03246 0.0437,0.07902 0.0127,0.04657 0.0127,0.1016 v 0.409222 q -0.0409,0.0071 -0.10865,0.01693 -0.0663,0.0099 -0.13688,0.0099 -0.0536,0 -0.10442,-0.0099 -0.0508,-0.0085 -0.0903,-0.03104 -0.0395,-0.02399 -0.0635,-0.06491 -0.024,-0.04092 -0.024,-0.104422 0,-0.05644 0.024,-0.09454 0.0254,-0.03951 0.0635,-0.0635 0.0395,-0.02399 0.0889,-0.03387 0.0508,-0.01129 0.1016,-0.01129 0.0691,0 0.13546,0.01552 v -0.03245 q 0,-0.02963 -0.007,-0.05645 -0.006,-0.02822 -0.024,-0.0508 -0.0169,-0.02258 -0.048,-0.03528 -0.0296,-0.01411 -0.0776,-0.01411 -0.0607,0 -0.10583,0.0085 -0.0452,0.0085 -0.0692,0.01693 l -0.0141,-0.09596 q 0.024,-0.01129 0.079,-0.01975 0.0565,-0.0085 0.11995,-0.0085 z" />
<path
id="path1573"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 119.59967,-29.062794 q 0,-0.0889 0.0282,-0.153811 0.0282,-0.06491 0.0776,-0.107245 0.0494,-0.04233 0.1143,-0.06209 0.0663,-0.02117 0.14112,-0.02117 0.048,0 0.0945,0.0071 0.048,0.0056 0.1016,0.02258 l -0.0268,0.100189 q -0.0466,-0.01693 -0.0861,-0.02117 -0.0381,-0.0056 -0.0776,-0.0056 -0.0508,0 -0.096,0.01411 -0.0451,0.0127 -0.079,0.04233 -0.0324,0.02822 -0.0522,0.07479 -0.0197,0.04516 -0.0197,0.110067 0,0.06209 0.0183,0.107244 0.0183,0.04374 0.0508,0.07338 0.0339,0.02822 0.0804,0.04233 0.0466,0.01411 0.10301,0.01411 0.0452,0 0.0861,-0.0042 0.0423,-0.0056 0.0917,-0.02258 l 0.0169,0.09737 q -0.0494,0.01834 -0.10019,0.0254 -0.0508,0.0085 -0.11007,0.0085 -0.079,0 -0.14534,-0.02117 -0.0649,-0.02258 -0.11289,-0.06491 -0.0466,-0.04233 -0.0734,-0.105834 -0.0254,-0.06491 -0.0254,-0.149577 z" />
<path
id="path1575"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 120.57193,-29.096661 q 0.0381,0.02822 0.0861,0.07197 0.048,0.04233 0.0945,0.09172 0.048,0.04939 0.0903,0.1016 0.0423,0.0508 0.0677,0.09454 h -0.13829 q -0.0268,-0.04374 -0.0663,-0.0889 -0.0395,-0.04657 -0.0847,-0.0889 -0.0438,-0.04233 -0.0889,-0.07761 -0.0438,-0.03528 -0.079,-0.05927 v 0.314677 h -0.11712 v -0.958144 l 0.11712,-0.01975 v 0.596899 q 0.0776,-0.06773 0.15523,-0.134055 0.0776,-0.06773 0.13969,-0.1397 h 0.13688 q -0.0607,0.07197 -0.14675,0.148167 -0.0847,0.0762 -0.16651,0.146755 z" />
<path
id="path1577"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 121.4835,-29.641349 q -0.13123,0.1016 -0.20037,0.234244 -0.0691,0.132644 -0.0691,0.289277 0,0.07902 0.0155,0.149578 0.0169,0.07056 0.0494,0.135467 0.0339,0.06491 0.0847,0.125588 0.0522,0.06068 0.12277,0.121356 l -0.0635,0.08467 q -0.16228,-0.119945 -0.24272,-0.277989 -0.079,-0.159456 -0.079,-0.335844 0,-0.174978 0.0804,-0.334433 0.0804,-0.159456 0.2413,-0.276578 l 0.0621,0.08467 z" />
<path
id="path1579"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.41111px;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono';text-align:center;text-anchor:middle;fill:#00ff00;stroke-width:0.264583"
d="m 126.0428,-28.585839 q 0.13123,-0.1016 0.20038,-0.234244 0.0706,-0.132645 0.0706,-0.289278 0,-0.07902 -0.0169,-0.149578 -0.0155,-0.07055 -0.0494,-0.135466 -0.0339,-0.06491 -0.0861,-0.125589 -0.0508,-0.06068 -0.12135,-0.121355 l 0.0635,-0.08467 q 0.16228,0.119944 0.2413,0.2794 0.0804,0.158044 0.0804,0.334433 0,0.08749 -0.0212,0.172155 -0.0198,0.08467 -0.0607,0.163689 -0.0395,0.07761 -0.10019,0.146756 -0.0593,0.07055 -0.1397,0.128411 l -0.0621,-0.08467 z" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/beat_up_jeans.png-563d36a45fd402c2c8bee9ed9bcd86ff.stex" path="res://.import/fullsnack_shirt.svg-fe727b0ca40952cd32596f7250f1aa9d.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/clothes/beat_up_jeans.png" source_file="res://sprites/clothes/fullsnack_shirt.svg"
dest_files=[ "res://.import/beat_up_jeans.png-563d36a45fd402c2c8bee9ed9bcd86ff.stex" ] dest_files=[ "res://.import/fullsnack_shirt.svg-fe727b0ca40952cd32596f7250f1aa9d.stex" ]
[params] [params]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/fundosi.png-d90a95087bb6d0b75606acf5d41632c9.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/fundosi.png"
dest_files=[ "res://.import/fundosi.png-d90a95087bb6d0b75606acf5d41632c9.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/icrazy_frame.png-b5e146a49c044ebe70b5af8f2c06006d.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/icrazy_frame.png"
dest_files=[ "res://.import/icrazy_frame.png-b5e146a49c044ebe70b5af8f2c06006d.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/jeans.png-cb872dec1c87d219bb56d373215c361d.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/jeans.png"
dest_files=[ "res://.import/jeans.png-cb872dec1c87d219bb56d373215c361d.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -7,40 +7,40 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="jeans.svg" width="29.456085mm"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)" height="34.453861mm"
id="svg2007" viewBox="0 0 29.456086 34.453861"
version="1.1" version="1.1"
viewBox="0 0 29.473656 34.394779" id="svg2007"
height="34.394779mm" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
width="29.473656mm"> sodipodi:docname="jeans.svg">
<defs <defs
id="defs2001" /> id="defs2001" />
<sodipodi:namedview <sodipodi:namedview
inkscape:document-rotation="0" id="base"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
showguides="false"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="39.164862"
inkscape:cx="45.927747"
inkscape:zoom="7.9195959"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff" pagecolor="#ffffff"
id="base" /> bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="55.33311"
inkscape:cy="80.173641"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
showguides="false"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:document-rotation="0" />
<metadata <metadata
id="metadata2004"> id="metadata2004">
<rdf:RDF> <rdf:RDF>
@ -54,89 +54,110 @@
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<g <g
transform="translate(-78.963857,-134.17554)" inkscape:label="Layer 1"
id="layer1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
inkscape:label="Layer 1"> id="layer1"
transform="translate(-113.83015,-134.49517)">
<g <g
transform="translate(79.04197,133.14299)" transform="translate(34.982358,0.41212184)"
id="g5876"> id="layer1-7"
inkscape:label="Layer 1">
<g <g
style="display:inline" transform="translate(78.947411,133.03874)"
transform="translate(-81.705925,-154.45556)" id="g865">
id="layer1-2" <g
inkscape:label="Layer 1" /> style="display:inline"
<g transform="translate(-81.705925,-154.45556)"
transform="translate(-5.1279453,-51.149461)" id="layer1-9"
inkscape:label="Color" inkscape:label="Layer 1" />
id="layer3"> <g
<path transform="translate(-5.1279453,-51.149461)"
sodipodi:nodetypes="cccccccc" inkscape:label="Color"
inkscape:connector-curvature="0" id="layer3-4">
id="path831-5" <path
d="m 31.177302,52.67103 c 0.123737,9.510183 1.695953,13.938414 0.99792,24.63455 5.989076,7.622458 -5.466142,9.257207 -8.457219,1.795388 0,-4.946536 0.06144,-10.808711 0.04725,-15.73326 -3.051778,4.577667 -6.271659,11.54185 -7.843006,17.103423 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.263833 7.487361,-18.941311 9.940414,-26.474811 5.154703,-0.604627 9.953305,-1.073545 15.472751,-1.51428 z" sodipodi:nodetypes="cccccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> inkscape:connector-curvature="0"
<path id="path831-5-5"
sodipodi:nodetypes="zczczzcczscz" d="m 31.277528,52.54814 c 0.123737,9.510183 1.595727,14.061304 0.897694,24.75744 5.989076,7.622458 -5.466142,9.257207 -8.457219,1.795388 0,-4.946536 0.06144,-10.808711 0.04725,-15.73326 -3.051778,4.577667 -6.271659,11.54185 -7.843006,17.103423 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.263833 7.053048,-18.83034 9.506101,-26.36384 5.923103,-0.53781 10.58807,-0.572415 16.00729,-1.748141 z"
inkscape:connector-curvature="0" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
id="path857" <path
d="m 15.270238,54.296281 c -0.52762,2.533268 6.446629,6.5124 8.920238,7.984749 4.741466,-1.55146 7.056167,-4.214834 7.606771,-7.654018 0.550604,-3.439184 0.377976,22.678568 0.377976,22.678568 0,0 2.67882,4.233216 0.566965,5.76414 -2.111855,1.530924 -7.638158,-0.210531 -9.024185,-3.968752 -1.386027,-3.758221 0.472473,-16.819938 0.472473,-16.819938 l -8.268229,18.1901 c 0,0 2.807966,4.177084 0.330729,5.764141 -2.477237,1.587057 -11.6490399,-3.641913 -10.488839,-5.57515 2.8840394,-4.80566 7.654018,-18.520832 7.654018,-18.520832 0,0 2.379703,-10.376276 1.852083,-7.843008 z" sodipodi:nodetypes="zczczzcczscz"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> inkscape:connector-curvature="0"
</g> id="path857-4"
<g d="m 15.270238,54.296281 c -0.52762,2.533268 6.446629,6.5124 8.920238,7.984749 4.741466,-1.55146 7.056167,-4.214834 7.606771,-7.654018 0.550604,-3.439184 0.377976,22.678568 0.377976,22.678568 0,0 2.67882,4.233216 0.566965,5.76414 -2.111855,1.530924 -7.638158,-0.210531 -9.024185,-3.968752 -1.386027,-3.758221 0.472473,-16.819938 0.472473,-16.819938 l -8.268229,18.1901 c 0,0 2.807966,4.177084 0.330729,5.764141 -2.477237,1.587057 -11.6490399,-3.641913 -10.488839,-5.57515 2.8840394,-4.80566 7.654018,-18.520832 7.654018,-18.520832 0,0 2.379703,-10.376276 1.852083,-7.843008 z"
transform="translate(-5.1279453,-51.149461)" style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
style="display:inline" </g>
inkscape:label="Re-ink" <g
id="layer2-6"> transform="translate(-5.1279453,-51.149461)"
<path style="display:inline"
sodipodi:nodetypes="ccccccc" inkscape:label="Re-ink"
inkscape:connector-curvature="0" id="layer2-2">
id="path831" <path
d="m 31.177302,52.67103 c 1.05918,9.510183 1.695951,13.938413 0.997921,24.63455 5.989074,7.622458 -5.466143,9.257205 -8.45722,1.795387 0,-4.946535 0.06144,-10.808709 0.04725,-15.733259 -3.051778,4.577668 -6.271659,11.541849 -7.843006,17.103422 6.066786,9.10018 -9.2744956,5.510391 -10.1581101,0.188989 5.0893641,-6.263833 7.4873611,-18.94131 9.9404141,-26.474809" sodipodi:nodetypes="ccccccc"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> inkscape:connector-curvature="0"
id="path831-4"
d="m 31.277528,52.54814 c 1.05918,9.510183 1.595725,14.061303 0.897695,24.75744 5.989074,7.622458 -5.466143,9.257205 -8.45722,1.795387 0,-4.946535 0.06144,-10.808709 0.04725,-15.733259 -3.051778,4.577668 -6.271659,11.541849 -7.843006,17.103422 6.066786,9.10018 -9.2744956,5.510391 -10.1581101,0.188989 C 10.853501,74.396286 12.817185,61.82978 15.270238,54.296281"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g> </g>
</g> </g>
</g> </g>
<g <g
transform="translate(-0.00462819,-0.15888097)" inkscape:groupmode="layer"
sodipodi:insensitive="true"
inkscape:label="Re-ink"
id="layer2" id="layer2"
inkscape:groupmode="layer"> inkscape:label="Re-ink"
<path transform="translate(-34.87092,-0.47851244)">
sodipodi:nodetypes="ssssscss" <g
inkscape:connector-curvature="0" id="layer3"
id="path2567" inkscape:label="Color"
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z" transform="translate(34.866292,0.31963147)">
style="fill:#0066ff;fill-opacity:1;stroke:#000000;stroke-width:0.997624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path
<path style="fill:#0066ff;fill-opacity:1;stroke:none;stroke-width:3.77055;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="czc" d="M 97.818359,2.4609375 C 97.714007,2.4632366 97.608094,2.4804824 97.5,2.5136719 79.950735,7.9020374 50.416307,7.237218 38.572266,9.0898438 35.717113,9.5364422 23.347841,74.192538 2.7226562,103.76562 c -7.6714393,10.99958 38.3597578,6.20937 39.5996098,0.40626 4.876032,-22.82227 27.320312,-51.361333 27.320312,-51.361333 0,0 1.211544,31.964423 -1.427734,46.917969 -2.097419,11.883504 36.321806,7.441764 36.070316,-4.621094 -0.67418,-32.338756 0.10741,-92.7913255 -6.466801,-92.6464845 z"
inkscape:connector-curvature="0" transform="scale(0.26458333)"
id="path2571" id="path2567-7"
d="m 18.426339,13.972628 c 0,0 1.617341,-2.392754 1.269607,-4.2556557 C 19.348213,7.8540704 19.040519,2.8667529 19.040519,2.8667529" inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> sodipodi:nodetypes="ssssscsss" />
<path </g>
sodipodi:nodetypes="cc" <g
inkscape:connector-curvature="0" id="layer2-8"
id="path2573" inkscape:label="Re-ink"
d="M 19.695946,9.7169723 20.500613,2.7246489" transform="translate(34.866292,0.31963147)">
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path
<path style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.997624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="czccc" d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
inkscape:connector-curvature="0" id="path2567-5"
id="path2569" inkscape:connector-curvature="0"
d="m 8.2727251,8.6461754 c 0,0 2.7605219,0.9937891 3.6076819,-0.064851 0.84716,-1.0586401 0.876732,-5.245691 0.876732,-5.245691 l -3.1378736,0.420475 z" sodipodi:nodetypes="ssssscss" />
style="fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path
<path style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="csssc" d="m 18.426339,13.972628 c 0,0 1.617341,-2.392754 1.269607,-4.2556557 C 19.348213,7.8540704 19.040519,2.8667529 19.040519,2.8667529"
inkscape:connector-curvature="0" id="path2571-1"
id="path2583" inkscape:connector-curvature="0"
d="m 9.6192654,3.7561084 c 0,0 0.3544121,-0.9759023 0.7708376,-0.9833627 4.367213,-0.07824 10.825706,-0.9252221 15.468224,-1.6704345 0.369698,-0.059344 0.467965,1.0211734 0.234104,1.0879908 C 22.558728,3.1999315 9.6192654,3.7561084 9.6192654,3.7561084 Z" sodipodi:nodetypes="czc" />
style="fill:#d4d4d4;fill-opacity:1;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path
<path style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" d="M 19.695946,9.7169723 20.500613,2.7246489"
id="path2579" id="path2573-1"
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846" inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> sodipodi:nodetypes="cc" />
<path
style="fill:#676767;fill-opacity:1;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.2727251,8.6461754 c 0,0 2.7605219,0.9937891 3.6076819,-0.064851 0.84716,-1.0586401 0.876732,-5.245691 0.876732,-5.245691 l -3.1378736,0.420475 z"
id="path2569-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czccc" />
<path
style="fill:#d4d4d4;fill-opacity:1;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 9.6192654,3.7561084 c 0,0 0.3544121,-0.9759023 0.7708376,-0.9833627 4.367213,-0.07824 10.825706,-0.9252221 15.468224,-1.6704345 0.369698,-0.059344 0.467965,1.0211734 0.234104,1.0879908 C 22.558728,3.1999315 9.6192654,3.7561084 9.6192654,3.7561084 Z"
id="path2583-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
id="path2579-3"
inkscape:connector-curvature="0" />
</g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/old_sweatshirt.png-dbf47e037ee1cc1a851f14c93ca3e55b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/old_sweatshirt.png"
dest_files=[ "res://.import/old_sweatshirt.png-dbf47e037ee1cc1a851f14c93ca3e55b.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -9,13 +7,13 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg837"
width="85"
height="115"
viewBox="0 0 85 115"
sodipodi:docname="old_sweatshirt.svg" sodipodi:docname="old_sweatshirt.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> viewBox="0 0 97.262993 111.22054"
height="111.22054"
width="97.262993"
id="svg837"
version="1.1">
<metadata <metadata
id="metadata843"> id="metadata843">
<rdf:RDF> <rdf:RDF>
@ -31,86 +29,125 @@
<defs <defs
id="defs841" /> id="defs841" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" inkscape:document-rotation="0"
bordercolor="#666666" inkscape:current-layer="layer3"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview839"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.6568543"
inkscape:cx="27.653445"
inkscape:cy="57.852419"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="layer2" /> inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:cy="57.353631"
inkscape:cx="42.848699"
inkscape:zoom="5.6568543"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
showgrid="false"
id="namedview839"
inkscape:window-height="1001"
inkscape:window-width="1920"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<g <g
inkscape:groupmode="layer" sodipodi:insensitive="true"
id="layer1" transform="translate(32.788075,10.175717)"
inkscape:label="Original" inkscape:label="Original"
transform="translate(17.592821,10.674505)" id="layer1"
sodipodi:insensitive="true" /> inkscape:groupmode="layer">
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Color"
sodipodi:insensitive="true">
<path <path
style="display:inline;opacity:1;fill:#808040;fill-opacity:1;stroke:none;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccczccccc"
d="m 8.0736469,15.651414 c -3.000545,1.901906 -2.134901,57.073021 -2.134901,57.073021 -2.3101643,9.809195 1.7559102,10.522205 0.608284,17.795372 3.172745,1.81514 6.7511221,-1.62007 11.6707931,-0.28466 4.919671,1.33542 1.601085,5.99959 0.42698,11.243813 -1.174105,5.24423 13.404674,6.57995 20.637376,8.09176 6.041484,1.26281 12.406349,1.67677 18.502475,0.71164 7.9885,-1.26473 20.835815,-4.94864 22.772278,-8.37642 1.936463,-3.427783 -8.341438,-10.916233 -7.116337,-15.086632 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627003 -11.386138,-12.66708 C 60.741934,14.190253 60.509291,27.100642 54.51114,27.46906 48.496563,27.838487 46.696496,15.151003 40.705447,15.798267 28.378758,17.130023 11.074193,13.749508 8.0736469,15.651414 Z"
id="path864-9"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="zcczzaazzsacsssz" /> id="path831-5"
d="m 46.787194,-5.4495265 c 6.182844,10.610487 12.979515,41.6494335 8.262347,74.8845275 -0.141694,9.87259 -3.586061,28.68159 -3.586061,31.159209 0,0 -14.736886,0.37753 -27.324069,0.137 -12.58718,-0.24053 -18.1298988,0.25463 -31.0541598,0.23947 0.111458,-6.265139 -20.4005142,-18.107429 -8.5714282,-31.535699 0,-19.530488 -1.293517,-39.757261 1.785713,-58.392861 0.961996,-16.3539095 18.3522452,-11.0856075 27.142859,-17.6785775 14.467272,-1.375555 22.615393,0.353651 33.344799,1.186931 z"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.13385832;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="scscszs"
d="m 19.358749,103.26231 c 0,0 -2.031868,-16.953677 4.419417,-10.076263 6.451286,6.877413 45.278555,8.939913 50.73491,-1.237436 3.031418,-5.654289 6.010409,10.076259 6.010409,10.076259 0,0 -17.202537,8.99577 -26.606593,9.50546 -11.827122,0.64102 -34.558143,-8.26802 -34.558143,-8.26802 z"
id="path857"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czscac" /> id="path847"
d="M 0.58525123,18.899282 C 1.5695192,9.2359035 15.657788,-6.1332135 15.657788,-6.1332135 c 0,0 -17.0499178,-1.42975 -22.2233538,4.040614 -16.5094452,17.4569915 -8.9206112,71.5276005 -8.9206112,71.5276005 0,0 -17.308634,9.8824 -15.708654,15.34552 2.230942,7.61752 22.6017222,16.629519 24.2800822,10.19019 1.67836,-6.43932 4.862778,-50.17962 7.50000003,-76.071429 z"
style="display:inline;fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cssccc"
inkscape:connector-curvature="0"
id="path853"
d="m 42.997137,-5.6687355 c 1.501784,9.89167 2.634285,18.8116645 2.409536,30.6394425 -0.297336,15.648106 7.053586,50.982144 7.053586,50.982144 2.796117,0.65679 4.732138,-49.196411 4.732138,-49.196411 L 46.787194,-5.4495265 c 0,0 -0.991563,-0.432193 -3.790057,-0.219213 z"
style="display:inline;fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
transform="matrix(3.7795276,0,0,3.7795276,-62.629028,-120.24359)"
id="layer2-2"
inkscape:label="Re-ink"
style="display:inline">
<path
sodipodi:nodetypes="cc"
id="path905"
d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
id="path856"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
id="path858"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g> </g>
<g <g
inkscape:groupmode="layer" transform="translate(15.195254,-0.49878756)"
id="layer2" inkscape:label="Color"
id="layer3"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="zcczzaazzsacsssz"
inkscape:connector-curvature="0"
id="path864-9"
d="M 7.1897635,7.6964628 C 4.1892185,9.5983688 1.4983656,62.314118 1.4983656,62.314118 c -2.31016433,9.809195 1.7559102,10.522205 0.608284,17.795372 3.172745,1.81514 12.7824924,-6.589335 14.5201834,-1.718381 1.737691,4.870954 -3.722618,17.193298 -4.896723,22.437521 -1.174105,5.24423 17.252887,-2.751351 25.961079,-3.101948 6.167056,-0.24829 12.334187,0.496135 18.502475,0.71164 4.089563,0.142879 10.333658,3.813238 12.270121,0.385453 1.936463,-3.427783 4.458816,-13.314145 5.683917,-17.484544 1.225101,-4.170404 5.408982,-8.223489 5.6722,-11.345397 C 80.600558,60.734823 79.952451,48.90778 79.250595,38.3973 78.728724,30.582135 76.546387,15.055715 76.546387,15.055715 c 0,0 -5.708848,-12.6270035 -11.386138,-12.6670805 C 59.150944,2.3462145 58.918301,15.256604 52.92015,15.625022 46.905573,15.994449 40.686089,3.6605179 34.69504,4.3077819 22.368351,5.6395379 10.19031,5.7945568 7.1897635,7.6964628 Z"
style="display:inline;opacity:1;fill:#808040;fill-opacity:1;stroke:none;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
inkscape:connector-curvature="0"
id="path857"
d="m 11.73011,100.82863 c 0,0 -0.06008,-21.591065 6.391202,-14.713651 6.451286,6.877413 46.339215,7.348923 51.79557,-2.828426 3.031418,-5.654289 -1.453097,15.537222 -1.453097,15.537222 0,0 -13.097788,4.772245 -22.501844,5.281935 -11.827122,0.64102 -34.231831,-3.27708 -34.231831,-3.27708 z"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.13386;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="translate(15.195254,-0.49878756)"
style="display:inline"
inkscape:label="Re-Ink" inkscape:label="Re-Ink"
style="display:inline"> id="layer2"
inkscape:groupmode="layer">
<path <path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="zcccccacsssz"
d="m 20.92203,15.22896 c 0,0 -4.320995,-7.0225477 0.89194,-9.0880412 4.013907,-1.5904089 18.973672,3.1143052 22.320898,3.7467605 4.35966,0.8237537 -3.429422,5.9105877 -3.429422,5.9105877"
id="path866"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 66.751238,14.232673 c 0,0 -0.736893,-8.3150049 2.300858,-9.299268 1.946842,-0.630797 3.485848,2.307421 4.689494,3.9625141 2.939318,4.0417579 5.250189,6.8177929 5.676727,13.8763579 0.08689,1.437935 -1.280941,4.127475 -1.280941,4.127475"
id="path874"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.0736469,15.651414 c -1.916671,16.5657 -7.0806162,60.446928 0.2411497,73.984505 1.7291064,3.220442 4.9833544,-0.736187 9.9030254,0.59923 4.919671,1.335417 1.601085,5.999584 0.42698,11.243811 -1.174105,5.24423 13.404674,6.57995 20.637376,8.09176 6.041484,1.26281 12.406349,1.67677 18.502475,0.71164 7.9885,-1.26473 20.835815,-4.94864 22.772278,-8.37642 1.936463,-3.427781 -8.341438,-10.916229 -7.116337,-15.086633 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627002 -11.386138,-12.667079 C 60.741933,14.190253 60.50929,27.100641 54.511139,27.469059 48.496562,27.838486 46.696495,15.151003 40.705446,15.798267 28.378757,17.130023 11.074192,13.749508 8.0736469,15.651414 Z"
id="path864" id="path864"
d="m 5.9523266,12.292657 c -2.602401,9.773847 -6.04092442,52.334708 -3.8456826,67.816829 1.7291064,3.220442 9.600517,-3.053792 14.520188,-1.718375 -1.267513,8.052931 -3.722617,17.193292 -4.896722,22.437519 7.385296,-1.189217 53.237981,4.589 58.396996,-3.16533 -1.483616,-7.865555 8.928433,-22.159753 9.692795,-27.669467 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.6270025 -11.386138,-12.6670795 C 59.150943,2.3462145 63.392869,15.693018 52.920149,15.625021 39.324699,15.536749 40.862864,2.9534111 34.871815,3.6006751 22.545126,4.9324311 8.5547276,2.5188099 5.9523266,12.292657 Z"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cczzaazzsacsssc" />
<path
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 21.918317,40.563119 -3.700495,49.67203"
id="path870" id="path870"
inkscape:connector-curvature="0" /> d="m 20.327327,28.719081 -3.700495,49.67203"
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cc"
d="m 70.024752,47.679455 3.415842,39.139852" inkscape:connector-curvature="0"
id="path872" id="path872"
inkscape:connector-curvature="0" /> d="m 68.433762,35.835417 2.355182,53.812317"
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/owo_censor.png-2a498f144203dc5d2648b236b3ec8a4f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/owo_censor.png"
dest_files=[ "res://.import/owo_censor.png-2a498f144203dc5d2648b236b3ec8a4f.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -9,13 +7,13 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg5861"
width="106"
height="112"
viewBox="0 0 106 112"
sodipodi:docname="owo_censor.svg" sodipodi:docname="owo_censor.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> viewBox="0 0 106 112"
height="112"
width="106"
id="svg5861"
version="1.1">
<metadata <metadata
id="metadata5867"> id="metadata5867">
<rdf:RDF> <rdf:RDF>
@ -24,68 +22,110 @@
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title />
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<defs <defs
id="defs5865" /> id="defs5865" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" inkscape:document-rotation="0"
bordercolor="#666666" inkscape:current-layer="layer5"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview5863"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:pagecheckerboard="true"
inkscape:zoom="11.9198"
inkscape:cx="59.544802"
inkscape:cy="77.188526"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="layer5" /> inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:cy="53.430906"
inkscape:cx="124.95147"
inkscape:zoom="2.97995"
inkscape:pagecheckerboard="true"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
showgrid="false"
id="namedview5863"
inkscape:window-height="1001"
inkscape:window-width="1920"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<g <g
inkscape:groupmode="layer" sodipodi:insensitive="true"
id="layer5" inkscape:label="Base"
inkscape:label="Re-ink" id="layer1"
transform="translate(-32.423729,-45.084747)"> inkscape:groupmode="layer">
<path <path
style="fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 59.437605,65.304684 c -0.678597,3.381977 -5.604293,23.15058 -4.278595,27.09777 1.325698,3.94719 30.286204,2.637458 45.47056,2.768503 12.20372,0.105321 36.37387,3.074763 36.5778,-1.593987 0.28901,-6.616554 -1.90632,-19.361934 0.83894,-28.440074 1.29465,-4.281223 -23.6464,1.523975 -35.48718,1.593986 -14.38145,0.08503 -42.442928,-4.808175 -43.121525,-1.426198 z" d="m 87.987902,-1.3588007 c 0.46767,35.9439987 6.03109,49.1450877 3.39286,89.5714287 22.635878,28.809282 -20.65943,34.987862 -31.96429,6.785717 0,-18.695568 0.23221,-40.85182 0.17858,-59.464289 -11.53428,17.301419 -23.70391,43.622741 -29.64286,64.642854 22.92959,34.39438 -35.0532101,20.82667 -38.3928541,0.71429 C 10.79473,77.216879 27.302582,28.651465 29.609672,-0.9823219 c 23.33695,-0.6966501 33.04407,-0.2101796 58.37823,-0.3764788 z"
id="path6430" id="path831-5"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="zzssssz" /> sodipodi:nodetypes="cccccccc" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27.487912,1.2483478 c -1.994157,9.5745562 24.36521,24.6137952 33.71428,30.1785792 17.9205,-5.863786 26.66898,-15.930082 28.75,-28.9285722 2.08102,-12.9984908 1.42857,85.7142732 1.42857,85.7142732 0,0 10.124678,15.999552 2.14286,21.785722 -7.98181,5.78617 -28.86863,-0.79571 -34.10715,-15.000005 -5.23853,-14.204298 1.78572,-63.571418 1.78572,-63.571418 l -31.25,68.749973 c 0,0 10.61279,15.78741 1.25,21.78573 -9.362783,5.99833 -44.611024,-14.148 -39.6428541,-21.07143 C 3.8882159,83.710228 22.809338,31.516214 22.809338,31.516214 c 0,0 6.672724,-39.8424226 4.678574,-30.2678662 z"
id="path857"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zczczzcczscz" />
<path
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 87.987902,-1.3588007 c -0.19321,34.6047117 6.03109,49.1450837 3.39286,89.5714287 22.635868,28.809282 -20.65943,34.987852 -31.96429,6.785717 0,-18.695568 0.23221,-40.851816 0.17858,-59.464289 -11.53428,17.301423 -23.70391,43.622737 -29.64286,64.642844 22.92959,34.39439 -35.0532091,20.82668 -38.3928541,0.71429 C 10.79473,77.216871 29.177582,25.169318 29.609672,-0.9823219"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 38.723432,3.0021513 48.818956,12.901646"
id="path3894" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 80.673762,-0.23233669 74.302802,9.4711293"
id="path3896" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 59.422622,1.2561433 c 1.69536,2.584202 2.53351,0.427596 4.81618,1.157737 -2.05579,1.154981 -2.44188,2.636708 -4.70547,2.646859 1.77871,0.992537 0.35782,3.842463 1.95689,4.771002 -2.47447,1.1548387 -1.92643,-1.412419 -4.43166,-1.653742"
id="path3900"
sodipodi:nodetypes="ccccc" />
</g>
<g
transform="translate(-32.423729,-45.084747)"
inkscape:label="Re-ink"
id="layer5"
inkscape:groupmode="layer">
<g <g
aria-label="OwO" transform="translate(-5.7047937,-15.75862)"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" id="g6791">
id="text6445"
transform="matrix(0.38088161,0,0,0.39176487,47.846968,54.981177)">
<path <path
d="m 96.914116,83.107109 q -5.507813,0 -9.335938,-3.300781 -4.0625,-3.515625 -4.0625,-9.0625 0,-6.757813 4.003907,-12.285156 4.472656,-6.132813 11.152343,-6.132813 6.425782,0 9.550782,2.890625 3.26172,3.007813 3.26172,9.492188 0,6.757812 -3.67188,12.1875 -4.21875,6.210937 -10.898434,6.210937 z m 1.757812,-26.777344 q -4.785156,0 -8.105468,4.765625 -3.066407,4.375 -3.066407,9.648438 0,3.769531 2.792969,6.132812 2.675781,2.226563 6.621094,2.226563 4.746094,0 7.832034,-4.785156 2.7539,-4.277344 2.7539,-9.609375 0,-4.667969 -2.08984,-6.5625 -1.99219,-1.816407 -6.738282,-1.816407 z" style="fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff" d="m 59.437605,65.304684 c -0.678597,3.381977 -5.604293,23.15058 -4.278595,27.09777 1.325698,3.94719 30.286204,2.637458 45.47056,2.768503 12.20372,0.105321 36.37387,3.074763 36.5778,-1.593987 0.28901,-6.616554 -1.90632,-19.361934 0.83894,-28.440074 1.29465,-4.281223 -23.6464,1.523975 -35.48718,1.593986 -14.38145,0.08503 -42.442928,-4.808175 -43.121525,-1.426198 z"
id="path6447" id="path6430"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0"
<path sodipodi:nodetypes="zzssssz" />
d="m 139.29693,64.435234 q -1.52344,6.367188 -3.98438,14.394531 -0.54687,1.777344 -1.8164,3.652344 -0.6836,1.035156 -1.85547,1.015625 -2.12891,-0.03906 -3.32031,-5.292969 -0.39063,-1.679687 -0.80079,-4.570312 l -0.64453,-4.355469 -1.60156,3.730469 -2.96875,8.066406 q -0.25391,0.742188 -0.74219,1.132813 -0.58593,1.132812 -1.875,1.171875 -1.48437,0.05859 -2.87109,-5.820313 -0.70313,-3.027344 -1.40625,-8.203125 l -0.46875,-2.929687 q -0.25391,-1.757813 -0.25391,-2.949219 0,-0.820313 0.56641,-1.347656 0.58594,-0.546875 1.40625,-0.546875 1.48437,0 1.83594,1.621093 0.2539,1.152344 0.41015,2.851563 l 0.29297,2.871094 1.15235,8.769531 q 2.16796,-6.015625 4.49218,-13.867188 0.64453,-2.167968 2.2461,-2.167968 1.54297,0 2.08984,2.421875 0.50781,2.285156 1.26953,7.03125 0.78125,4.921875 1.38672,7.675781 l 1.42578,-5.3125 2.51953,-10.644531 q 0.29297,-1.191407 1.67969,-1.191407 0.82031,0 1.42578,0.566407 0.60547,0.546875 0.60547,1.328125 0,0.09766 -0.19531,0.898437 z" <g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff" aria-label="OwO"
id="path6449" style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" /> id="text6445"
<path transform="matrix(0.38088161,0,0,0.39176487,47.846968,54.981177)">
d="m 156.21099,83.107109 q -5.50781,0 -9.33594,-3.300781 -4.0625,-3.515625 -4.0625,-9.0625 0,-6.757813 4.00391,-12.285156 4.47266,-6.132813 11.15234,-6.132813 6.42578,0 9.55078,2.890625 3.26172,3.007813 3.26172,9.492188 0,6.757812 -3.67187,12.1875 -4.21875,6.210937 -10.89844,6.210937 z m 1.75781,-26.777344 q -4.78515,0 -8.10547,4.765625 -3.0664,4.375 -3.0664,9.648438 0,3.769531 2.79297,6.132812 2.67578,2.226563 6.62109,2.226563 4.74609,0 7.83203,-4.785156 2.75391,-4.277344 2.75391,-9.609375 0,-4.667969 -2.08985,-6.5625 -1.99218,-1.816407 -6.73828,-1.816407 z" <path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff" d="m 96.914116,83.107109 q -5.507813,0 -9.335938,-3.300781 -4.0625,-3.515625 -4.0625,-9.0625 0,-6.757813 4.003907,-12.285156 4.472656,-6.132813 11.152343,-6.132813 6.425782,0 9.550782,2.890625 3.26172,3.007813 3.26172,9.492188 0,6.757812 -3.67188,12.1875 -4.21875,6.210937 -10.898434,6.210937 z m 1.757812,-26.777344 q -4.785156,0 -8.105468,4.765625 -3.066407,4.375 -3.066407,9.648438 0,3.769531 2.792969,6.132812 2.675781,2.226563 6.621094,2.226563 4.746094,0 7.832034,-4.785156 2.7539,-4.277344 2.7539,-9.609375 0,-4.667969 -2.08984,-6.5625 -1.99219,-1.816407 -6.738282,-1.816407 z"
id="path6451" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff"
inkscape:connector-curvature="0" /> id="path6447"
inkscape:connector-curvature="0" />
<path
d="m 139.29693,64.435234 q -1.52344,6.367188 -3.98438,14.394531 -0.54687,1.777344 -1.8164,3.652344 -0.6836,1.035156 -1.85547,1.015625 -2.12891,-0.03906 -3.32031,-5.292969 -0.39063,-1.679687 -0.80079,-4.570312 l -0.64453,-4.355469 -1.60156,3.730469 -2.96875,8.066406 q -0.25391,0.742188 -0.74219,1.132813 -0.58593,1.132812 -1.875,1.171875 -1.48437,0.05859 -2.87109,-5.820313 -0.70313,-3.027344 -1.40625,-8.203125 l -0.46875,-2.929687 q -0.25391,-1.757813 -0.25391,-2.949219 0,-0.820313 0.56641,-1.347656 0.58594,-0.546875 1.40625,-0.546875 1.48437,0 1.83594,1.621093 0.2539,1.152344 0.41015,2.851563 l 0.29297,2.871094 1.15235,8.769531 q 2.16796,-6.015625 4.49218,-13.867188 0.64453,-2.167968 2.2461,-2.167968 1.54297,0 2.08984,2.421875 0.50781,2.285156 1.26953,7.03125 0.78125,4.921875 1.38672,7.675781 l 1.42578,-5.3125 2.51953,-10.644531 q 0.29297,-1.191407 1.67969,-1.191407 0.82031,0 1.42578,0.566407 0.60547,0.546875 0.60547,1.328125 0,0.09766 -0.19531,0.898437 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff"
id="path6449"
inkscape:connector-curvature="0" />
<path
d="m 156.21099,83.107109 q -5.50781,0 -9.33594,-3.300781 -4.0625,-3.515625 -4.0625,-9.0625 0,-6.757813 4.00391,-12.285156 4.47266,-6.132813 11.15234,-6.132813 6.42578,0 9.55078,2.890625 3.26172,3.007813 3.26172,9.492188 0,6.757812 -3.67187,12.1875 -4.21875,6.210937 -10.89844,6.210937 z m 1.75781,-26.777344 q -4.78515,0 -8.10547,4.765625 -3.0664,4.375 -3.0664,9.648438 0,3.769531 2.79297,6.132812 2.67578,2.226563 6.62109,2.226563 4.74609,0 7.83203,-4.785156 2.75391,-4.277344 2.75391,-9.609375 0,-4.667969 -2.08985,-6.5625 -1.99218,-1.816407 -6.73828,-1.816407 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff"
id="path6451"
inkscape:connector-curvature="0" />
</g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/raw_shirt.png-7da25ac67de42dedb246944fe382a09a.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/raw_shirt.png"
dest_files=[ "res://.import/raw_shirt.png-7da25ac67de42dedb246944fe382a09a.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -7,39 +7,39 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="retro_shirt.svg" width="24.636646mm"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 24.636646 29.835097"
height="29.835096mm" height="29.835096mm"
width="24.636646mm"> viewBox="0 0 24.636646 29.835097"
version="1.1"
id="svg8"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="retro_shirt.svg">
<defs <defs
id="defs2" /> id="defs2" />
<sodipodi:namedview <sodipodi:namedview
inkscape:document-rotation="0" id="base"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
showgrid="false"
inkscape:current-layer="layer2"
inkscape:document-units="mm"
inkscape:cy="61.350542"
inkscape:cx="54.55151"
inkscape:zoom="3.959798"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff" pagecolor="#ffffff"
id="base" /> bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="57.951723"
inkscape:cy="16.861876"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:document-rotation="0" />
<metadata <metadata
id="metadata5"> id="metadata5">
<rdf:RDF> <rdf:RDF>
@ -48,152 +48,145 @@
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title> <dc:title />
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<g <g
sodipodi:insensitive="true" inkscape:label="Layer 1"
style="display:inline"
transform="translate(-329.97283,-265.24728)"
id="layer1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
inkscape:label="Layer 1"> id="layer1"
transform="translate(-329.97283,-265.24728)"
style="display:inline">
<g <g
transform="translate(329.97283,264.31884)" style="display:inline"
id="g5165" id="g5165"
style="display:inline"> transform="translate(329.97283,264.31884)">
<g <g
inkscape:label="Layer 1" style="display:inline"
id="layer1-0"
transform="translate(-84.473399,-131.83647)" transform="translate(-84.473399,-131.83647)"
style="display:inline" /> id="layer1-0"
inkscape:label="Layer 1" />
<g <g
transform="translate(-7.8954188,-28.530371)" inkscape:label="Color"
id="layer3-1" id="layer3-1"
inkscape:label="Color"> transform="translate(-7.8954188,-28.530371)">
<path <path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccczcccccc"
d="m 28.94971,30.372591 c 1.635877,2.807358 3.434163,11.019746 2.186079,19.813197 -0.03749,2.612124 -0.948812,7.588671 -0.948812,8.244208 0,0 -3.899134,0.09989 -7.229493,0.03625 -3.330358,-0.06364 -4.796869,0.06737 -8.216413,0.06336 0.02949,-1.657652 -5.3976359,-4.790926 -2.267857,-8.343822 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.923695,-0.409606 4.488693,-0.526788 8.822478,0.314035 z" inkscape:connector-curvature="0"
id="path831-5" id="path831-5"
inkscape:connector-curvature="0" d="m 28.94971,30.372591 c 1.635877,2.807358 3.434163,11.019746 2.186079,19.813197 -0.03749,2.612124 -0.948812,7.588671 -0.948812,8.244208 0,0 -3.899134,0.09989 -7.229493,0.03625 -3.330358,-0.06364 -4.796869,0.06737 -8.216413,0.06336 0.02949,-1.657652 -5.3976359,-4.790926 -2.267857,-8.343822 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.923695,-0.409606 5.221022,-0.526781 8.822478,0.314042 z"
sodipodi:nodetypes="ccczcccccc" /> style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="scscszs"
d="m 16.725446,36.81488 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -4.5795761,2.614718 -4.1562481,4.060169 0.59027,2.01547 5.9800391,4.399895 6.4241051,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z" inkscape:connector-curvature="0"
id="path847" id="path847"
inkscape:connector-curvature="0" d="m 16.725446,36.81488 c 0.260421,-2.556769 3.401786,-6.756331 3.401786,-6.756331 0,0 -3.924968,-0.245138 -5.293773,1.202229 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -4.5795761,2.614718 -4.1562481,4.060169 0.59027,2.01547 5.9800391,4.399895 6.4241051,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
sodipodi:nodetypes="scscszs" /> style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="zzcsz"
d="m 27.061041,29.785424 c 0,0 2.289171,3.879041 2.043123,8.635854 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 -2.739511,-0.80718 -2.739511,-0.80718 z" inkscape:connector-curvature="0"
id="path849" id="path849"
inkscape:connector-curvature="0" d="m 28.454828,29.974412 c -2.411571,0.04514 0.895384,3.690053 0.649336,8.446866 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 1.065847,-0.663335 -1.345724,-0.618192 z"
sodipodi:nodetypes="czcsc" /> style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 26.44683,30.125603 c 1.452313,2.918211 2.197082,5.166242 2.137617,8.295675 -0.07867,4.140228 1.866261,13.489026 1.866261,13.489026 0.739806,0.173775 1.252045,-13.016551 1.252045,-13.016551 l -1.792544,-7.594071 c 0,0 -4.132854,-2.519292 -3.463379,-1.174079 z"
id="path853"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssccs" />
</g> </g>
<g <g
transform="translate(-7.8954188,-28.530371)" style="display:inline"
id="layer2-2"
inkscape:label="Re-ink" inkscape:label="Re-ink"
style="display:inline"> id="layer2-2"
transform="translate(-7.8954188,-28.530371)">
<path <path
sodipodi:nodetypes="cc" style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path905"
d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486" d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
id="path905"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cac"
inkscape:connector-curvature="0"
id="path831"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path856"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 1.914919,-4.083786 4.441221,-4.157739"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cc"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
id="path831"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
id="path856"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
id="path858" id="path858"
inkscape:connector-curvature="0" d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
sodipodi:nodetypes="cc" /> style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
</g> </g>
</g> </g>
<g <g
style="display:inline" inkscape:groupmode="layer"
transform="translate(-106.0295,-13.937037)"
inkscape:label="Re-ink"
id="layer2" id="layer2"
inkscape:groupmode="layer"> inkscape:label="Re-ink"
transform="translate(-106.0295,-13.937037)"
style="display:inline">
<path <path
sodipodi:nodetypes="csssszzcsc" style="display:inline;opacity:1;fill:#0066ff;fill-opacity:1;stroke:#000000;stroke-width:0.844482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" d="m 110.37302,31.021927 c 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -4.00328,10.311165 -1.2883,10.650772 4.80707,0.601296 12.1488,0.265189 16.17434,-0.189436 1.20285,-0.135844 0.2755,-5.071641 0.94819,-8.803929 0.67269,-3.732287 0.55569,-18.343536 -1.92387,-19.371054 -2.47958,-1.027521 -4.30446,3.105203 -6.78621,3.064894 -2.36736,-0.03845 -3.94635,-3.350201 -6.37507,-3.132319 -2.27791,0.204353 -3.43175,0.649351 -3.77406,2.236071 -0.68462,3.173439 -0.87291,10.446862 -0.65738,14.194097 z"
id="path827-1" id="path827-1"
d="m 111.2673,15.729671 c -0.92152,4.271598 -1.10981,11.545021 -0.89428,15.292256 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -4.00328,10.311165 -1.2883,10.650772 4.80707,0.601296 12.1488,0.265189 16.17434,-0.189436 1.20285,-0.135844 0.2755,-5.071641 0.94819,-8.803929 0.67269,-3.732287 0.55569,-18.343536 -1.92387,-19.371054 -2.47958,-1.027521 -2.11828,2.062706 -6.12475,0.962401 -2.64074,-0.614126 -10.12597,-1.967194 -10.57366,0.108076 z"
style="display:inline;opacity:1;fill:#0066ff;fill-opacity:1;stroke:#000000;stroke-width:0.844482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="sssszzascs" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 114.37102,33.426539 114.5288,19.998533"
id="path829-0" id="path829-0"
d="M 114.37102,33.426539 114.5288,19.998533"
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="czc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
id="path833-5" id="path833-5"
d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path820" sodipodi:nodetypes="czc" />
<path
style="display:inline;fill:#ff2ad4;fill-opacity:1;stroke:#ffaeae;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 114.89413,24.204353 c 11.63473,-0.983472 11.63473,-0.983472 11.63473,-0.983472" d="m 114.89413,24.204353 c 11.63473,-0.983472 11.63473,-0.983472 11.63473,-0.983472"
style="display:inline;fill:#ff2ad4;fill-opacity:1;stroke:#ffaeae;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path820"
inkscape:connector-curvature="0" />
<path <path
inkscape:connector-curvature="0" style="display:inline;fill:none;stroke:#bcffa9;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path867"
d="m 115.53314,25.483277 c 3.77518,-0.267269 3.77518,-0.267269 3.77518,-0.267269 l -1.9377,4.777442 -1.1359,0.167044" d="m 115.53314,25.483277 c 3.77518,-0.267269 3.77518,-0.267269 3.77518,-0.267269 l -1.9377,4.777442 -1.1359,0.167044"
style="display:inline;fill:none;stroke:#bcffa9;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path867"
inkscape:connector-curvature="0" />
<path <path
sodipodi:nodetypes="cccc" style="display:inline;fill:none;stroke:#fff8ab;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path869"
d="m 120.77831,25.14919 c -0.10023,1.637026 -0.30068,2.839739 -0.30068,2.839739 l 1.5368,0.267269 -0.96885,2.505652" d="m 120.77831,25.14919 c -0.10023,1.637026 -0.30068,2.839739 -0.30068,2.839739 l 1.5368,0.267269 -0.96885,2.505652"
style="display:inline;fill:none;stroke:#fff8ab;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path869"
<path
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path871" sodipodi:nodetypes="cccc" />
<path
style="display:inline;fill:none;stroke:#e5abff;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 123.31737,28.055746 2.67269,-1.637026 -0.20045,4.142678 z" d="m 123.31737,28.055746 2.67269,-1.637026 -0.20045,4.142678 z"
style="display:inline;fill:none;stroke:#e5abff;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path871"
inkscape:connector-curvature="0" />
<path <path
inkscape:connector-curvature="0" style="display:inline;fill:none;stroke:#e5abff;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path873"
d="m 123.11691,26.084634 2.60588,-1.269531" d="m 123.11691,26.084634 2.60588,-1.269531"
style="display:inline;fill:none;stroke:#e5abff;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path873"
inkscape:connector-curvature="0" />
<path <path
inkscape:connector-curvature="0" style="display:inline;fill:#ff2ad4;fill-opacity:1;stroke:#ffaeae;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path820-4"
d="m 115.15893,31.438331 c 11.63965,0.923536 11.63965,0.923536 11.63965,0.923536" d="m 115.15893,31.438331 c 11.63965,0.923536 11.63965,0.923536 11.63965,0.923536"
style="display:inline;fill:#ff2ad4;fill-opacity:1;stroke:#ffaeae;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path820-4"
inkscape:connector-curvature="0" />
<path <path
sodipodi:nodetypes="cc" style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path829"
d="M 114.37102,33.426539 114.5288,19.998533" d="M 114.37102,33.426539 114.5288,19.998533"
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path829"
<path
sodipodi:nodetypes="czc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path833" sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269" d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> id="path833"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,274 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24.636646mm"
height="29.835096mm"
viewBox="0 0 24.636646 29.835097"
version="1.1"
id="svg8"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="skate_shirt.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="54.55151"
inkscape:cy="31.045966"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:document-rotation="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-329.97283,-265.24728)"
style="display:inline"
sodipodi:insensitive="true">
<g
style="display:inline"
id="g5165"
transform="translate(329.97283,264.31884)">
<g
style="display:inline"
transform="translate(-84.473399,-131.83647)"
id="layer1-0"
inkscape:label="Layer 1" />
<g
inkscape:label="Color"
id="layer3-1"
transform="translate(-7.8954188,-28.530371)">
<path
sodipodi:nodetypes="ccczcccccc"
inkscape:connector-curvature="0"
id="path831-5"
d="m 28.94971,30.372591 c 1.635877,2.807358 3.434163,11.019746 2.186079,19.813197 -0.03749,2.612124 -0.948812,7.588671 -0.948812,8.244208 0,0 -3.899134,0.09989 -7.229493,0.03625 -3.330358,-0.06364 -4.796869,0.06737 -8.216413,0.06336 0.02949,-1.657652 -5.3976359,-4.790926 -2.267857,-8.343822 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.923695,-0.409606 4.488693,-0.526788 8.822478,0.314035 z"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="scscszs"
inkscape:connector-curvature="0"
id="path847"
d="m 16.725446,36.81488 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -4.5795761,2.614718 -4.1562481,4.060169 0.59027,2.01547 5.9800391,4.399895 6.4241051,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="czcsc"
inkscape:connector-curvature="0"
id="path849"
d="m 27.061041,29.785424 c 0,0 2.289171,3.879041 2.043123,8.635854 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 -2.739511,-0.80718 -2.739511,-0.80718 z"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="sssccs"
inkscape:connector-curvature="0"
id="path853"
d="m 26.44683,30.125603 c 1.452313,2.918211 2.197082,5.166242 2.137617,8.295675 -0.07867,4.140228 1.866261,13.489026 1.866261,13.489026 0.739806,0.173775 1.252045,-13.016551 1.252045,-13.016551 l -1.792544,-7.594071 c 0,0 -4.132854,-2.519292 -3.463379,-1.174079 z"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
style="display:inline"
inkscape:label="Re-ink"
id="layer2-2"
transform="translate(-7.8954188,-28.530371)">
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
id="path905"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cac"
inkscape:connector-curvature="0"
id="path831"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path856"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path858"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Re-ink"
transform="translate(-106.0295,-13.937037)"
style="display:inline">
<path
style="display:inline;opacity:1;fill:#aaaaff;fill-opacity:1;stroke:#000000;stroke-width:0.844482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 111.2673,15.729671 c -0.92152,4.271598 -1.10981,11.545021 -0.89428,15.292256 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -4.00328,10.311165 -1.2883,10.650772 4.80707,0.601296 12.1488,0.265189 16.17434,-0.189436 1.20285,-0.135844 0.2755,-5.071641 0.94819,-8.803929 0.67269,-3.732287 0.55569,-18.343536 -1.92387,-19.371054 -2.47958,-1.027521 -2.11828,2.062706 -6.12475,0.962401 -2.64074,-0.614126 -10.12597,-1.967194 -10.57366,0.108076 z"
id="path827-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssszzcsc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 114.37102,33.426539 114.5288,19.998533"
id="path829-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
id="path833-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 114.37102,33.426539 114.5288,19.998533"
id="path829"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.478761;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 127.1015,23.889142 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
id="path833"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" />
<ellipse
ry="4.6772165"
rx="4.8776689"
cy="28.035503"
cx="120.72933"
id="path9453"
style="fill:#ffff00;stroke-width:1.02426" />
<g
transform="matrix(1.180012,0,0,1.3188279,16.891979,6.8717692)"
id="g9451">
<path
fill="#a0041e"
d="m 91.741515,12.1259 c 0.476514,0.475985 0.99986,0.724164 0,1.724289 l -5.173133,5.172869 c -1.215496,1.21576 -1.445419,2.00316 -3.017573,0.431271 -0.862013,-0.862013 0.07514,-0.937419 1.293283,-2.155825 L 90.017225,12.1259 c 0.47625,-0.47625 1.248304,-0.47625 1.72429,0 z"
id="path9342"
style="stroke-width:0.264583" />
<path
fill="#dd2e44"
d="m 92.13839,12.522775 a 1.2186708,1.2186708 0 0 1 0,1.724289 l -5.172869,5.172869 c -1.077648,1.077648 -2.207154,1.241689 -3.017573,0.431271 -0.862012,-0.862013 0.07514,-0.937419 1.293284,-2.155825 l 5.173133,-5.172604 a 1.2186708,1.2186708 0 0 1 1.724025,0 z"
id="path9344"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 87.20788,20.158385 c 0.245268,0.245798 0.710935,0.178064 1.040341,-0.151342 0.329142,-0.329141 0.39714,-0.794808 0.151342,-1.040341 -0.245269,-0.245534 -0.7112,-0.1778 -1.040342,0.151341 -0.329406,0.329406 -0.397139,0.795073 -0.151341,1.040342 z"
id="path9346"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 88.204565,18.771174 -1.192213,1.192213 0.195528,0.194998 1.191683,-1.191683 z"
id="path9348"
style="stroke-width:0.264583" />
<path
fill="#88c9f9"
d="m 87.025846,19.976616 c 0.245534,0.245533 0.7112,0.1778 1.040342,-0.151606 0.329406,-0.329142 0.397139,-0.794808 0.151606,-1.040342 -0.245533,-0.245533 -0.7112,-0.1778 -1.040342,0.151342 -0.329406,0.329671 -0.397139,0.795073 -0.151606,1.040606 z"
id="path9350"
style="stroke-width:0.264583" />
<path
fill="#808285"
d="m 87.82965,19.157202 c 0.0799,0.0971 0.06429,0.257439 -0.05477,0.376502 -0.119063,0.119062 -0.27305,0.126206 -0.376238,0.05477 -0.917575,-0.633941 -0.811477,-1.004887 -0.692414,-1.12395 0.118797,-0.119062 0.303741,-0.303741 1.12342,0.69268 z"
id="path9352"
style="stroke-width:0.264583" />
<path
fill="#a7a9ac"
d="m 87.457117,19.272031 c -0.291835,0.327289 -0.731044,0.161131 -1.041135,-0.148696 -0.310092,-0.309827 -0.344488,-0.652463 -0.0344,-0.962554 0.309827,-0.310092 0.624416,-0.186002 0.934244,0.124089 0.310091,0.309827 0.464608,0.624152 0.141287,0.987161 z"
id="path9354"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 85.577517,18.629093 c 0.266171,0.2667 0.771525,0.192881 1.128448,-0.164306 0.357452,-0.357188 0.430742,-0.862277 0.164571,-1.128712 -0.266171,-0.266436 -0.771525,-0.192882 -1.128713,0.164306 -0.357452,0.357452 -0.431006,0.862806 -0.164306,1.128712 z"
id="path9356"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 86.658869,17.124143 -1.293283,1.293813 0.211931,0.211137 1.292754,-1.292754 z"
id="path9358"
style="stroke-width:0.264583" />
<path
fill="#88c9f9"
d="m 85.380138,18.431979 c 0.266435,0.266435 0.771789,0.192881 1.128712,-0.164571 0.357452,-0.357188 0.430742,-0.862277 0.164571,-1.128713 -0.266171,-0.266435 -0.771525,-0.192616 -1.128712,0.164307 -0.357452,0.357452 -0.431007,0.862541 -0.164571,1.128977 z"
id="path9360"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 86.24215,17.569702 c 0.0889,0.08864 0.06429,0.257439 -0.05477,0.376502 -0.119063,0.119062 -0.287338,0.143404 -0.376238,0.05477 -0.08863,-0.0889 -0.06429,-0.257439 0.05503,-0.376502 0.118798,-0.119062 0.287073,-0.143139 0.375973,-0.05477 z m 4.670161,-1.115484 c 0.245268,0.245798 0.710935,0.178065 1.040077,-0.151341 0.329141,-0.329142 0.396875,-0.794809 0.151341,-1.040342 -0.245533,-0.245533 -0.710935,-0.1778 -1.040077,0.151342 -0.329406,0.32967 -0.397404,0.795073 -0.151341,1.040341 z"
id="path9362"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 91.908732,15.067008 -1.191948,1.192477 0.195527,0.194733 1.191418,-1.191683 z"
id="path9364"
style="stroke-width:0.264583" />
<path
fill="#88c9f9"
d="m 90.730277,16.272714 c 0.245534,0.245269 0.710936,0.177536 1.040077,-0.151606 0.329142,-0.329142 0.396875,-0.794808 0.151342,-1.040342 -0.245533,-0.245533 -0.710671,-0.1778 -1.040077,0.151342 -0.329142,0.329406 -0.39714,0.795073 -0.151342,1.040606 z"
id="path9366"
style="stroke-width:0.264583" />
<path
fill="#808285"
d="m 91.533552,15.4533 c 0.08017,0.0971 0.06456,0.257439 -0.05477,0.376502 -0.118798,0.119062 -0.272521,0.126206 -0.375973,0.05477 -0.91784,-0.633941 -0.811742,-1.004887 -0.692415,-1.12395 0.118798,-0.119062 0.304006,-0.304006 1.123156,0.69268 z"
id="path9368"
style="stroke-width:0.264583" />
<path
fill="#a7a9ac"
d="m 91.161284,15.568129 c -0.291836,0.327289 -0.731309,0.161131 -1.041136,-0.148696 -0.310091,-0.309827 -0.344487,-0.652463 -0.0344,-0.962554 0.310092,-0.310092 0.624152,-0.186002 0.934244,0.124089 0.310356,0.309563 0.464608,0.623888 0.141288,0.987161 z"
id="path9370"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 89.281948,14.925191 c 0.266171,0.2667 0.771261,0.192881 1.128448,-0.164306 0.357452,-0.357188 0.430742,-0.862277 0.164571,-1.128713 -0.266435,-0.266435 -0.771525,-0.192881 -1.128712,0.164307 -0.357717,0.357452 -0.431007,0.862541 -0.164307,1.128712 z"
id="path9372"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 89.070546,14.713525 1.293019,-1.293548 0.211667,0.211666 -1.292755,1.293813 z"
id="path9374"
style="stroke-width:0.264583" />
<path
fill="#88c9f9"
d="m 89.084569,14.728077 c 0.266171,0.266435 0.771525,0.192881 1.128713,-0.164571 0.357187,-0.357188 0.430741,-0.862277 0.164306,-1.128713 -0.266171,-0.266435 -0.771525,-0.192881 -1.128713,0.164307 -0.357452,0.357452 -0.431006,0.862541 -0.164306,1.128977 z"
id="path9376"
style="stroke-width:0.264583" />
<path
fill="#3b88c3"
d="m 89.946317,13.8658 c 0.0889,0.08864 0.06429,0.257439 -0.05477,0.376502 -0.119062,0.119062 -0.287337,0.143404 -0.376237,0.05477 -0.0889,-0.0889 -0.06429,-0.257439 0.05477,-0.376502 0.119327,-0.119062 0.287337,-0.143404 0.376237,-0.05477 z"
id="path9378"
style="stroke-width:0.264583" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.stex" path="res://.import/skate_shirt.svg-f6dd325cc91a89a1f7a63cf7771a25ab.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/clothes/dj_shorts.png" source_file="res://sprites/clothes/skate_shirt.svg"
dest_files=[ "res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.stex" ] dest_files=[ "res://.import/skate_shirt.svg-f6dd325cc91a89a1f7a63cf7771a25ab.stex" ]
[params] [params]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/sweat_pants.png-d8ccfd16bd13d1a37fa594caf5da185b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/sweat_pants.png"
dest_files=[ "res://.import/sweat_pants.png-d8ccfd16bd13d1a37fa594caf5da185b.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -9,39 +7,40 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="28.045834mm" sodipodi:docname="sweat_pants.svg"
height="29.633333mm" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
viewBox="0 0 28.045834 29.633333"
version="1.1"
id="svg2007" id="svg2007"
inkscape:version="0.92.3 (2405546, 2018-03-11)" version="1.1"
sodipodi:docname="sweat_pants.svg"> viewBox="0 0 29.435812 33.446296"
height="33.446297mm"
width="29.435812mm">
<defs <defs
id="defs2001" /> id="defs2001" />
<sodipodi:namedview <sodipodi:namedview
id="base" inkscape:document-rotation="0"
pagecolor="#ffffff" inkscape:window-maximized="1"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="30.540413"
inkscape:cy="76.888462"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
showguides="false"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9" inkscape:window-y="-9"
inkscape:window-maximized="1" /> inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
showguides="false"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:pagecheckerboard="true"
showgrid="false"
inkscape:current-layer="layer2"
inkscape:document-units="mm"
inkscape:cy="107.22418"
inkscape:cx="125.41245"
inkscape:zoom="2.8"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata <metadata
id="metadata2004"> id="metadata2004">
<rdf:RDF> <rdf:RDF>
@ -50,24 +49,45 @@
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:type <dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title /> <dc:title></dc:title>
</cc:Work> </cc:Work>
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<g <g
inkscape:label="Layer 1" sodipodi:insensitive="true"
inkscape:groupmode="layer" transform="translate(-75.717135,-133.15615)"
id="layer1" id="layer1"
transform="translate(-78.959229,-134.01666)" />
<g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" inkscape:label="Layer 1">
inkscape:label="Re-ink">
<path <path
style="fill:#a4a4fe;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.5332267,2.040524 10.205357,2.4050384 13.305684,4.0864294 22.924293,3.4606256 25.796875,0.66519761 27.169099,-0.67017035 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z" d="m 101.94606,133.56129 c 0.12374,9.51018 1.59573,13.00297 0.8977,23.69911 5.98907,7.62246 -5.466145,9.2572 -8.457218,1.79539 0,-4.94654 0.06144,-10.80872 0.04725,-15.73327 -3.051778,4.57767 -6.271659,11.54186 -7.843006,17.10343 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.26383 9.457066,-19.11343 10.067485,-26.95404 6.174568,-0.18432 8.74291,-0.0556 15.445899,-0.0996 z"
id="path2567" id="path831-5"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssscss" /> sodipodi:nodetypes="cccccccc" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 85.938777,134.2511 c -0.52762,2.53327 6.446629,6.5124 8.920238,7.98475 4.74147,-1.55146 7.056165,-4.21484 7.606765,-7.65402 0.5506,-3.43919 0.37798,22.67857 0.37798,22.67857 0,0 2.67882,4.23321 0.56696,5.76414 -2.11185,1.53092 -7.638151,-0.21053 -9.024178,-3.96875 -1.386027,-3.75823 0.472473,-16.81994 0.472473,-16.81994 l -8.268229,18.1901 c 0,0 2.807966,4.17708 0.330729,5.76414 -2.477237,1.58706 -11.803334,-3.74333 -10.488839,-5.57515 3.262015,-4.5458 8.268229,-18.35547 8.268229,-18.35547 0,0 1.765492,-10.54164 1.237872,-8.00837 z"
id="path857"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zczczzcczscz" />
<path
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 101.94606,133.56129 c -0.0511,9.15583 1.59573,13.00297 0.8977,23.69911 5.98907,7.62246 -5.466145,9.2572 -8.457218,1.79538 0,-4.94653 0.06144,-10.8087 0.04725,-15.73326 -3.051778,4.57767 -6.271659,11.54185 -7.843006,17.10343 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.26384 9.95316,-20.03475 10.067485,-26.95404"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
</g>
<g
transform="translate(3.2420942,0.86050551)"
inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="ssssscss"
inkscape:connector-curvature="0"
id="path2567"
d="M -2.526553,25.010779 C 2.9305269,17.186233 6.1941491,-0.05256636 6.9586346,-0.03871764 11.098397,0.03627448 18.827125,-0.11705908 22.644647,-0.36114768 24.555479,-0.48332439 24.164332,14.02817 24.345538,22.72028 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.9386774,7.551179 -7.2287944,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
style="fill:#a4a4fe;fill-opacity:1;stroke:#000000;stroke-width:0.997624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/train_hoodie.png-ef75f26eae784b263936f7a14cf90b00.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/train_hoodie.png"
dest_files=[ "res://.import/train_hoodie.png-ef75f26eae784b263936f7a14cf90b00.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -11,11 +9,11 @@
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1" version="1.1"
id="svg837" id="svg837"
width="85" width="95.84964"
height="115" height="112.14081"
viewBox="0 0 85 115" viewBox="0 0 95.84964 112.14081"
sodipodi:docname="train_hoodie.svg" sodipodi:docname="train_hoodie.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
<metadata <metadata
id="metadata843"> id="metadata843">
<rdf:RDF> <rdf:RDF>
@ -48,78 +46,173 @@
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0" fit-margin-bottom="0"
inkscape:zoom="5.6568543" inkscape:zoom="5.6568542"
inkscape:cx="61.06424" inkscape:cx="36.923847"
inkscape:cy="71.518993" inkscape:cy="49.691733"
inkscape:window-x="-9" inkscape:window-x="-9"
inkscape:window-y="-9" inkscape:window-y="-9"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="layer2" /> inkscape:current-layer="layer2"
inkscape:document-rotation="0" />
<g <g
sodipodi:insensitive="true"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
inkscape:label="Original" inkscape:label="Original"
transform="translate(17.592821,10.674505)" transform="translate(23.595688,10.035324)">
sodipodi:insensitive="true" /> <g
transform="matrix(3.7795276,0,0,3.7795276,-23.595688,-11.351606)"
id="g5165"
style="display:inline">
<g
inkscape:label="Layer 1"
id="layer1-0"
transform="translate(-84.473399,-131.83647)"
style="display:inline" />
<g
transform="translate(-7.8954188,-28.530371)"
id="layer3-1"
inkscape:label="Color">
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 27.061041,29.785424 c 1.635877,2.807358 5.322832,11.606913 4.074748,20.400364 -0.03749,2.612124 -0.419645,7.588671 -0.419645,8.244208 0,0 -4.428301,0.09989 -7.75866,0.03625 -3.330358,-0.06364 -5.855202,0.06737 -9.274746,0.06336 0.02949,-1.657652 -4.3393029,-4.790926 -1.209524,-8.343822 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 3.592849,-3.915283 5.918699,-5.659673 3.157556,0.338749 6.172492,0.221567 9.149884,0.922074 z"
id="path831-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccczcccccc" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.725446,36.81488 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -4.5795761,2.614718 -4.1562481,4.060169 0.59027,2.01547 5.9800391,4.399895 6.4241051,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
id="path847"
inkscape:connector-curvature="0"
sodipodi:nodetypes="scscszs" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27.061041,29.785424 c 0,0 2.289171,3.879041 2.043123,8.635854 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 -2.739511,-0.80718 -2.739511,-0.80718 z"
id="path849"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czcsc" />
</g>
<g
transform="translate(-7.8954188,-28.530371)"
id="layer2-2"
inkscape:label="Re-ink"
style="display:inline">
<path
sodipodi:nodetypes="cc"
id="path905"
d="m 15.306227,52.99312 c -0.423415,4.241926 -1.008993,2.928287 -1.094323,5.536486"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
id="path856"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.616289,12.790482 1.611979,20.008717"
id="path858"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</g>
<g <g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" id="layer2"
inkscape:label="Re-Ink" inkscape:label="Re-Ink"
style="display:inline"> style="display:inline"
transform="translate(6.0028667,-0.63918115)">
<path <path
style="fill:#0033ff;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:#0033ff;fill-opacity:1;stroke:#000000;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 20.92203,15.22896 c 0,0 7.16949,-9.3206447 12.382425,-11.3861382 4.013907,-1.5904089 9.604507,-0.7747821 12.951733,-0.1423268 4.35966,0.8237536 -5.550742,12.097772 -5.550742,12.097772" d="m 13.907278,13.883647 c -3.000545,1.901906 -2.134901,57.07302 -2.134901,57.07302 -1.533667,14.715847 8.990578,10.597906 12.279076,17.510715 -0.38363,11.058135 -6.83498,16.168098 -4.169214,16.911068 26.948539,7.5108 52.37166,3.74885 56.432051,3.07863 3.979675,-0.65689 3.325824,-12.871175 4.550925,-17.041579 10.05555,-9.334942 6.764201,-28.512778 5.81,-42.941931 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -3.828453,-18.8861606 -9.441594,-19.7381467 C 55.615409,2.5229912 69.284289,22.332623 54.157586,20.928321 35.934562,19.23657 43.868068,1.8927509 37.877019,2.5400149 25.55033,3.8717709 16.907823,11.981741 13.907278,13.883647 Z"
id="path866"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc" />
<path
style="fill:#0033ff;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 66.751238,14.232673 c 0,0 -7.432449,-7.8329473 -5.123763,-11.2438116 1.703814,-2.51722345 6.596768,-1.2843159 9.108911,0.4269802 5.844273,3.981175 8.255393,12.2978704 8.681931,19.3564354 0.08689,1.437935 -1.280941,4.127475 -1.280941,4.127475"
id="path874"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="fill:#0033ff;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.0736469,15.651414 c -3.0005452,1.901906 -2.134901,57.07302 -2.134901,57.07302 0,0 -4.5852834,5.412284 -4.3731518,8.828784 0.2121316,3.4165 1.8086912,7.15144 4.9814356,8.966584 3.1727444,1.815144 6.7511213,-1.62007 11.6707923,-0.284653 4.919671,1.335417 1.601085,5.999584 0.42698,11.243811 -1.174105,5.24423 14.347292,10.08062 20.637376,10.38985 6.290084,0.30923 14.358639,1.44548 18.502475,0.71164 4.143836,-0.73384 20.835815,-7.24673 22.772278,-10.67451 1.936463,-3.427781 -8.341438,-10.916229 -7.116337,-15.086633 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627002 -11.386138,-12.667079 C 60.741933,14.190253 60.50929,27.100641 54.511139,27.469059 48.496562,27.838486 46.696495,15.151003 40.705446,15.798267 28.378757,17.130023 11.074192,13.749508 8.0736469,15.651414 Z"
id="path864" id="path864"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="zczzzzzzzzsacsssz" /> sodipodi:nodetypes="zccsscccsssz" />
<path <path
style="fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cc"
d="m 21.918317,40.563119 -3.700495,49.67203" style="fill:none;stroke:#000000;stroke-width:2.16103;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 27.751948,30.119161 24.051453,88.467382"
id="path870" id="path870"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cc"
d="m 70.024752,47.679455 3.415842,39.139852" style="fill:none;stroke:#000000;stroke-width:2.3239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 75.858383,31.59388 3.563865,61.043869"
id="path872" id="path872"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path
transform="matrix(0.4893069,0.72477403,-0.70528539,0.47614981,57.371568,-29.137548)"
inkscape:transform-center-y="0.5737846"
inkscape:transform-center-x="-0.15838427"
d="m 70.564495,39.176713 -8.782592,3.810191 -6.337677,-7.175327 4.865692,-8.244787 9.344839,2.079768 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.1614666"
sodipodi:arg1="0.53314811"
sodipodi:r2="6.5883803"
sodipodi:r1="8.1436863"
sodipodi:cy="35.037708"
sodipodi:cx="63.55106"
sodipodi:sides="5"
id="path953"
style="opacity:1;fill:#660080;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:type="star" />
<g <g
id="g888" style="opacity:1"
transform="translate(-0.17677669,-5.8336309)"> transform="matrix(0.29289323,0,0,0.29289322,71.420755,27.773676)"
id="g945">
<path <path
sodipodi:nodetypes="cc" fill="#a7a9ac"
inkscape:connector-curvature="0" d="m -41.62508,44.095025 h 32 l -11,-17 h -10 z"
id="path876" id="path881" />
d="m 56.75,49.9375 2.5625,-4.78125"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
sodipodi:nodetypes="cc" fill="#58595b"
inkscape:connector-curvature="0" d="m -38.62508,44.095025 h 26 l -10,-17 h -6 z"
id="path878" id="path883" />
d="m 63.59375,45.15625 2.21875,4.8125"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
sodipodi:nodetypes="cc" fill="#808285"
inkscape:connector-curvature="0" d="m -35.62508,44.095025 h 20 l -9,-17 h -2 z"
id="path880" id="path885" />
d="m 58.34375,46.46875 6,0.03125"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
inkscape:connector-curvature="0" fill="#a7a9ac"
id="path882" d="m -15.62508,43.095025 a 1,1 0 0 1 -1,1 h -18 a 1,1 0 1 1 0,-2 h 18 a 1,1 0 0 1 1,1 z m -2,-4 a 1,1 0 0 1 -1,1 h -14 a 1,1 0 1 1 0,-2 h 14 a 1,1 0 0 1 1,1 z"
d="m 57.3125,48.8125 8.0625,0.21875" id="path887" />
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path
fill="#58595b"
d="m -16.54908,33.395026 -4.076,-6.300001 h -10 l -4.076,6.300001 c 1.889,2.516999 4.798,4.698999 9.076,4.698999 4.277,0 7.188,-2.183 9.076,-4.698999 z"
id="path889" />
<path
fill="#a7a9ac"
d="m -25.62508,8.0950255 c -9,0 -12,3.0000005 -12,8.9999995 v 8 c 0,1.999 3,11 12,11 9,0 12,-9.001 12,-11 v -8 c 0,-5.999999 -3,-8.9999995 -12,-8.9999995 z"
id="path891" />
<path
fill="#e6e7e8"
d="m -35.62508,19.095025 c 0,-8.999999 4.477,-9.9999995 10,-9.9999995 5.523,0 10,1.0000005 10,9.9999995 0,6 -4.477,11 -10,11 -5.523,-0.001 -10,-5 -10,-11 z"
id="path893" />
<path
fill="#ffac33"
d="m -25.62508,30.094025 c 1.642,0 3.185,-0.45 4.553,-1.228 -0.783,-1.042 -2.523,-1.771 -4.553,-1.771 -2.03,0 -3.769,0.729 -4.552,1.772 1.366,0.777 2.911,1.227 4.552,1.227 z"
id="path895" />
<path
d="m -24.62508,13.092026 v 4.965 c 3.488,-0.232 6,-1.621001 6,-2.463 v -1.666 c 0,-0.791 -3.692,-0.838001 -6,-0.836 z m -2,0 c -2.308,-0.002 -6,0.044 -6,0.836 v 1.667 c 0,0.841999 2.512,2.230999 6,2.462999 z"
fill="#55acee"
id="path897" />
<path
fill="#226699"
d="m -37.62508,18.095025 c 0,0 0,3 4,9 0,0 -4,-2 -4,-6 z m 24,0 c 0,0 0,3 -4,9 0,0 4,-2 4,-6 z"
id="path899" />
</g> </g>
<path
id="path961"
d="m 30.059579,108.77106 c 5.715158,-5.43701 3.978032,-14.286609 3.889087,-19.445435 10.308208,-2.55417 23.113923,-1.055965 33.057242,-2.12132 3.052743,7.008367 3.029367,15.161455 3.535534,22.627415"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/whatsnew_shirt.png-42b2ca70dd4fab6afb076d118bf9155b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/whatsnew_shirt.png"
dest_files=[ "res://.import/whatsnew_shirt.png-42b2ca70dd4fab6afb076d118bf9155b.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -11,11 +9,11 @@
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1" version="1.1"
id="svg837" id="svg837"
width="85" width="94.793716"
height="115" height="111.55444"
viewBox="0 0 85 115" viewBox="0 0 94.793717 111.55445"
sodipodi:docname="whatsnew_shirt.svg" sodipodi:docname="whatsnew_shirt.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
<metadata <metadata
id="metadata843"> id="metadata843">
<rdf:RDF> <rdf:RDF>
@ -48,73 +46,112 @@
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0" fit-margin-bottom="0"
inkscape:zoom="5.6568543" inkscape:zoom="4"
inkscape:cx="57.175153" inkscape:cx="137.96482"
inkscape:cy="57.852419" inkscape:cy="55.756911"
inkscape:window-x="-9" inkscape:window-x="-9"
inkscape:window-y="-9" inkscape:window-y="-9"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="layer2" /> inkscape:current-layer="layer3"
inkscape:document-rotation="0" />
<g <g
sodipodi:insensitive="true"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
inkscape:label="Original" inkscape:label="Original"
transform="translate(17.592821,10.674505)" transform="translate(32.440117,9.2673536)">
sodipodi:insensitive="true" /> <path
sodipodi:nodetypes="ccczccccc"
inkscape:connector-curvature="0"
id="path831-5"
d="m 47.135152,-5.8136937 c 6.18285,10.610487 12.97952,41.6494317 8.26235,74.8845217 -0.1417,9.8726 -3.58606,28.6816 -3.58606,31.159222 0,0 -14.73689,0.37753 -27.32407,0.137 -12.58718,-0.24053 -18.1299004,0.25463 -31.0541614,0.23947 0.111458,-6.265142 -20.4005136,-18.107432 -8.5714276,-31.535702 0,-19.53049 -1.293517,-39.75726 1.785713,-58.392865 0.961996,-16.3539097 18.3522446,-11.08560765 27.142856,-17.6785777 14.46728,-1.375555 22.6154,0.353651 33.3448,1.186931 z"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.53543;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="scscszs"
inkscape:connector-curvature="0"
id="path847"
d="M 0.9332106,18.535115 C 1.9174786,8.8717363 16.005752,-6.4973807 16.005752,-6.4973807 c 0,0 -17.0499224,-1.42975 -22.2233584,4.040614 -16.5094446,17.4569917 -8.9206106,71.5276047 -8.9206106,71.5276047 0,0 -17.308634,9.8824 -15.708654,15.34552 2.230942,7.61752 22.601722,16.629522 24.2800816,10.19019 1.67836,-6.43932 4.862778,-50.17962 7.5,-76.071433 z"
style="display:inline;fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cssccc"
inkscape:connector-curvature="0"
id="path853"
d="m 43.345102,-6.0329027 c 1.50178,9.89167 2.63428,18.8116647 2.40953,30.6394407 -0.29733,15.64811 7.05359,50.98215 7.05359,50.98215 2.79611,0.65679 4.73213,-49.19641 4.73213,-49.19641 l -10.4052,-32.2059717 c 0,0 -0.99156,-0.432193 -3.79005,-0.219213 z"
style="display:inline;fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
transform="matrix(3.7795276,0,0,3.7795276,-62.28107,-120.60775)"
id="layer2-2"
inkscape:label="Re-ink"
style="display:inline">
<path
sodipodi:nodetypes="cc"
id="path905"
d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.94971,30.372591 c 0.955508,0.116443 2.429233,6.042953 2.71946,9.24064 0.470339,5.182141 -0.391642,12.934909 -1.638964,15.524046"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
id="path856"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.104165,38.421279 c -0.654058,4.302781 1.087122,12.790482 1.082812,20.008717"
id="path858"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
<g <g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer3" id="layer3"
inkscape:label="Color"> inkscape:label="Color"
transform="translate(14.847296,-1.4071514)">
<path <path
style="fill:#003f00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:#003f00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 5.4800775,46.58742 0.3535534,23.688076 -3.5355339,9.192389 1.5909903,9.722718 4.4194173,1.944543 9.9093174,-0.899997 3.172158,4.965861 -3.005204,7.24784 12.904699,4.5962 27.930718,1.94455 20.859649,-5.65686 0.883884,-3.889089 L 73.440594,86.819307 81.317279,82.826642 80.256618,54.012041 79.726289,42.698332 6.0104076,37.395031 Z" d="m 1.7677669,46.58742 0.3535534,23.688076 -3.5355339,9.192389 C 1.3900943,89.164894 7.489826,86.746918 11.162058,90.35571 l 3.343453,-0.120561 c 1.823594,4.358906 0.24889,11.006901 -0.583046,15.463701 l 10.654699,5.0962 30.930718,-1.80545 c 20.656765,0.17996 16.155281,-3.97321 14.220401,-22.170293 L 77.604968,82.826642 76.544307,54.012041 76.013978,42.698332 2.298097,37.395031 Z"
id="path896" id="path896"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccc" /> sodipodi:nodetypes="cccccccccccccc" />
<path <path
style="display:inline;fill:#006600;fill-opacity:1;stroke:#000000;stroke-width:1.13385832;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="display:inline;fill:#006600;fill-opacity:1;stroke:#000000;stroke-width:1.13386;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.020807,107.32817 c 0,0 1.489065,-13.755682 4.596194,-22.980958 1.310161,-3.889957 24.242128,-2.373791 32.173357,-2.828426 6.405129,-0.367155 4.596195,26.516494 4.596195,26.516494 0,0 -10.185625,3.33296 -15.469661,3.49505 -8.740826,0.26813 -25.896085,-4.20216 -25.896085,-4.20216 z" d="m 24.308496,109.32817 c 0,0 1.489065,-13.755682 4.596194,-22.980958 1.310161,-3.889957 24.242128,-2.373791 32.173357,-2.828426 6.405129,-0.367155 4.596195,26.516494 4.596195,26.516494 0,0 -11.146242,0.31182 -16.719661,0.24505 -8.2209,-0.0985 -24.646085,-0.95216 -24.646085,-0.95216 z"
id="path857" id="path857"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="csscac" /> sodipodi:nodetypes="csscac" />
<path <path
style="fill:#006600;fill-opacity:1;stroke:none;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:#006600;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 5.3033008,49.7694 c 0,0 11.2785072,3.829348 15.5563492,0.883883 1.120484,-0.771498 0.13007,-3.098877 1.237437,-3.889087 12.426374,-8.867376 32.757196,-6.896551 45.785163,1.06066 2.002682,1.223197 2.218976,4.135882 3.358758,6.187185 3.112963,5.602502 9.01561,0 9.01561,0 L 78.137376,26.899752 68.766134,15.297945 62.57895,15.828275 56.745319,27.141983 52.679455,26.611653 44.194173,16.535382 10.253048,15.121168 8.0736469,15.651414 Z" d="m 1.5909902,49.7694 c 0,0 11.2785068,3.829348 15.5563488,0.883883 1.120484,-0.771498 0.13007,-3.098877 1.237437,-3.889087 12.426374,-8.867376 32.757196,-6.896551 45.785163,1.06066 2.002682,1.223197 2.218976,4.135882 3.358758,6.187185 3.112963,5.602502 9.01561,0 9.01561,0 L 74.425065,26.899752 67.767531,5.4169263 C 64.736073,-4.3651171 57.508171,15.968806 53.740115,16.358605 L 41.365746,16.005051 32.638124,4.73324 17.091883,4.45911 4.3613363,15.651414 Z"
id="path890" id="path890"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="caaascccccccccc" /> sodipodi:nodetypes="caaasccscccccc" />
</g> </g>
<g <g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" id="layer2"
inkscape:label="Re-Ink" inkscape:label="Re-Ink"
style="display:inline"> style="display:inline"
transform="translate(14.847296,-1.4071514)">
<path <path
style="opacity:1;fill:#003f00;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 20.92203,15.22896 c 0,0 -4.320995,-7.0225477 0.89194,-9.0880412 4.013907,-1.5904089 18.973672,3.1143052 22.320898,3.7467605 4.35966,0.8237537 -3.429422,5.9105877 -3.429422,5.9105877" d="m 4.3613363,15.651414 c -4.59153534,10.740741 -2.134901,57.07302 -2.134901,57.07302 0,0 -5.5970146,8.001689 0.1394113,12.870416 9.0540654,7.684536 12.1396644,4.640299 12.1396644,4.640299 0,0 1.601085,5.999584 0.42698,11.243811 -1.174105,5.24423 -0.257687,8.95878 24.137376,9.59176 20.059889,-0.90747 28.00612,1.05377 31.274753,-3.66478 1.936463,-3.42778 -1.841438,-16.416229 -0.616337,-20.586633 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -0.964639,-21.6408678 -6.613167,-22.2130205 C 55.052593,3.3943115 61.302056,15.509637 50.622051,15.978574 32.275856,16.784118 36.100301,3.3069645 30.109252,3.9542285 17.782563,5.2859845 8.9528716,4.9106733 4.3613363,15.651414 Z"
id="path866"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc" />
<path
style="opacity:1;fill:#003f00;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 66.751238,14.232673 c 0,0 -0.736893,-8.3150049 2.300858,-9.299268 1.946842,-0.630797 3.485848,2.307421 4.689494,3.9625141 2.939318,4.0417579 5.250189,6.8177929 5.676727,13.8763579 0.08689,1.437935 -1.280941,4.127475 -1.280941,4.127475"
id="path874"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.0736469,15.651414 c -3.0005452,1.901906 -2.134901,57.07302 -2.134901,57.07302 0,0 -4.5852834,5.412284 -4.3731518,8.828784 0.2121316,3.4165 1.8086912,7.15144 4.9814356,8.966584 3.1727444,1.815144 6.7511213,-1.62007 11.6707923,-0.284653 4.919671,1.335417 1.601085,5.999584 0.42698,11.243811 -1.174105,5.24423 13.404674,6.57995 20.637376,8.09176 6.041484,1.26281 12.406349,1.67677 18.502475,0.71164 7.9885,-1.26473 20.835815,-4.94864 22.772278,-8.37642 1.936463,-3.427781 -8.341438,-10.916229 -7.116337,-15.086633 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627002 -11.386138,-12.667079 C 60.741933,14.190253 60.50929,27.100641 54.511139,27.469059 48.496562,27.838486 46.696495,15.151003 40.705446,15.798267 28.378757,17.130023 11.074192,13.749508 8.0736469,15.651414 Z"
id="path864" id="path864"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="zczzzzaazzsacsssz" /> sodipodi:nodetypes="zcsczcczsacsssz" />
<path <path
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 21.918317,40.563119 -3.700495,49.67203" d="m 18.206006,40.563119 -3.700495,49.67203"
id="path870" id="path870"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 70.024752,47.679455 3.415842,39.139852" d="m 66.312441,47.679455 3.415842,39.139852"
id="path872" id="path872"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
</g> </g>

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/z_briefs.png-201f91b877a5ae4c563dbb9e92796cb0.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/z_briefs.png"
dest_files=[ "res://.import/z_briefs.png-201f91b877a5ae4c563dbb9e92796cb0.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0