1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-05 21:34:49 -04:00

Modular character design (#12)

Legs, shirt and the head are now independent sprites that can be changed separately. New clothes can be made from a template instead of having to work within a blank space. This removes the need for extra layers and placeholders while opening the door to creating new scenes and migrating over to new styles.

This wasn't always possible until the SVG port removed the Adobe Animate dependency. The layers and placeholders were there because the original Flash game was based around a drag-and-drop design. Tony's Dress Up was initially intended to be a 1:1 port of the Flash game which is why it wasn't done sooner.

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.
This commit is contained in:
Anthony Leland 2020-07-15 13:26:20 -04:00 committed by GitHub
parent cc051276d4
commit c406ed56d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
134 changed files with 3044 additions and 1963 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

@ -34,8 +34,9 @@ gdscript/completion/autocomplete_setters_and_getters=true
window/size/width=800 window/size/width=800
window/size/height=500 window/size/height=500
window/size/resizable=false window/size/resizable=false
window/energy_saving/keep_screen_on=false
mouse_cursor/custom_image="res://sprites/clothes/cursor.png" mouse_cursor/custom_image="res://sprites/clothes/cursor.png"
window/stretch/mode="viewport" window/stretch/mode="2d"
window/stretch/aspect="keep" window/stretch/aspect="keep"
[gui] [gui]

View file

@ -1,10 +1,10 @@
[gd_scene load_steps=32 format=2] [gd_scene load_steps=32 format=2]
[ext_resource path="res://scripts/characterBase.gd" type="Script" id=1] [ext_resource path="res://sprites/character/shadow.svg" type="Texture" id=1]
[ext_resource path="res://sprites/character/tail/tail0.svg" type="Texture" id=2] [ext_resource path="res://sprites/character/tail/tail0.svg" type="Texture" id=2]
[ext_resource path="res://sprites/character/tail/tail1.svg" type="Texture" id=3] [ext_resource path="res://sprites/character/tail/tail1.svg" type="Texture" id=3]
[ext_resource path="res://sprites/character/tail/tail2.svg" type="Texture" id=4] [ext_resource path="res://sprites/character/tail/tail2.svg" type="Texture" id=4]
[ext_resource path="res://sprites/character_base.svg" type="Texture" id=5] [ext_resource path="res://sprites/character_base_legs.svg" type="Texture" id=5]
[ext_resource path="res://sprites/character/eyes/eyes1.png" type="Texture" id=6] [ext_resource path="res://sprites/character/eyes/eyes1.png" type="Texture" id=6]
[ext_resource path="res://sprites/character/eyes/eyes2.png" type="Texture" id=7] [ext_resource path="res://sprites/character/eyes/eyes2.png" type="Texture" id=7]
[ext_resource path="res://sprites/character/eyes/eyes3.png" type="Texture" id=8] [ext_resource path="res://sprites/character/eyes/eyes3.png" type="Texture" id=8]
@ -23,13 +23,40 @@
[ext_resource path="res://sprites/character/mouth/mouth9.png" type="Texture" id=21] [ext_resource path="res://sprites/character/mouth/mouth9.png" type="Texture" id=21]
[ext_resource path="res://sprites/character/mouth/mouth10.png" type="Texture" id=22] [ext_resource path="res://sprites/character/mouth/mouth10.png" type="Texture" id=22]
[ext_resource path="res://sprites/character/mouth/mouth12.png" type="Texture" id=23] [ext_resource path="res://sprites/character/mouth/mouth12.png" type="Texture" id=23]
[ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=24] [ext_resource path="res://sprites/character_base_top.svg" type="Texture" id=25]
[ext_resource path="res://sprites/clothes/blank_bottom.png" type="Texture" id=25]
[ext_resource path="res://sprites/clothes/blank_top.png" type="Texture" id=26] [ext_resource path="res://sprites/clothes/blank_top.png" type="Texture" id=26]
[ext_resource path="res://sprites/character/shadow.svg" type="Texture" id=27] [ext_resource path="res://sprites/character_base_head.svg" type="Texture" id=27]
[ext_resource path="res://sprites/character/mouth/mouth11.png" type="Texture" id=28] [ext_resource path="res://sprites/character/mouth/mouth11.png" type="Texture" id=28]
[sub_resource type="SpriteFrames" id=1] [sub_resource type="GDScript" id=1]
script/source = "# Anthony Wilcox licenses this file to you under the MPL license.
# See the LICENSE file in the project root for more information.
extends Node2D
onready var character = preload(\"res://resources/character.tres\")
onready var accessory = $body/accessory
#onready var underwear = $Undies
onready var bottom = $body/legs
onready var top = $body/top
onready var eyes = $body/head/eyes
onready var mouth = $body/head/mouth
func _process(delta):
if character.accessory != null:
accessory.texture = character.accessory
# if character.underwear != null:
# underwear.texture = character.underwear
if character.bottom != null:
bottom.texture = character.bottom
if character.top != null:
top.texture = character.top
"
[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,
@ -54,48 +81,51 @@ animations = [ {
} ] } ]
[node name="characterBase" type="Node2D"] [node name="characterBase" type="Node2D"]
script = ExtResource( 1 ) position = Vector2( -19, -92 )
script = SubResource( 1 )
[node name="base" type="Node2D" parent="."] [node name="shadow" type="Sprite" parent="."]
position = Vector2( -103.897, -160.477 ) position = Vector2( 4.84271, 244.714 )
texture = ExtResource( 1 )
[node name="Tail" type="AnimatedSprite" parent="base"] [node name="body" type="Node2D" parent="."]
position = Vector2( 55.0701, 172.425 ) __meta__ = {
frames = SubResource( 1 ) "_edit_lock_": true
}
[node name="tail" type="AnimatedSprite" parent="body"]
position = Vector2( -33.7592, 99.4079 )
scale = Vector2( 0.927713, 1 )
frames = SubResource( 4 )
playing = true
[node name="legs" type="Sprite" parent="body"]
position = Vector2( 1.47027, 192.868 )
texture = ExtResource( 5 )
[node name="top" type="Sprite" parent="body"]
position = Vector2( 7, 78 )
texture = ExtResource( 25 )
[node name="head" type="Sprite" parent="body"]
position = Vector2( 10.6805, -25.1047 )
texture = ExtResource( 27 )
[node name="eyes" type="AnimatedSprite" parent="body/head"]
position = Vector2( 17.6857, 4.22147 )
frames = SubResource( 2 )
frame = 3
playing = true
[node name="mouth" type="AnimatedSprite" parent="body/head"]
position = Vector2( 38.1195, 8.68453 )
frames = SubResource( 3 )
frame = 2 frame = 2
playing = true playing = true
[node name="shadow" type="Sprite" parent="base"] [node name="accessory" type="Sprite" parent="body"]
position = Vector2( 91.524, 317.295 ) position = Vector2( 9.54095, 73.0832 )
texture = ExtResource( 27 )
[node name="Tony" type="Sprite" parent="base"]
position = Vector2( 96.3522, 164.086 )
texture = ExtResource( 5 )
[node name="Eyes" type="AnimatedSprite" parent="base"]
position = Vector2( 114.227, 63.9224 )
frames = SubResource( 2 )
playing = true
[node name="Mouth" type="AnimatedSprite" parent="base"]
position = Vector2( 148.505, 68.0261 )
frames = SubResource( 3 )
frame = 7
playing = true
[node name="Undies" type="Sprite" parent="."]
position = Vector2( -17.3889, 95.818 )
texture = ExtResource( 24 )
[node name="Bottom" type="Sprite" parent="."]
position = Vector2( -15.7094, 90.851 )
texture = ExtResource( 25 )
[node name="Top" type="Sprite" parent="."]
position = Vector2( -7.53471, -0.0449677 )
texture = ExtResource( 26 )
[node name="Accessory" type="Sprite" parent="."]
position = Vector2( -10.6723, -5.33797 )
texture = ExtResource( 26 ) texture = ExtResource( 26 )
__meta__ = {
"_edit_lock_": true
}

View file

@ -1,8 +0,0 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/clothing/accessoryBase.gd" type="Script" id=1]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2]
[node name="accessoryBase" instance=ExtResource( 2 )]
script = ExtResource( 1 )
[connection signal="pressed" from="." to="." method="_on_accessory_pressed"]

View file

@ -0,0 +1,9 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/accessory_base.gd" type="Script" id=2]
[node name="accessoryBase" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[connection signal="pressed" from="." to="." method="_on_accessory_pressed"]

View file

@ -1,7 +1,9 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2]
[node name="bottomsBase" instance=ExtResource( 1 )] [node name="bottomsBase" instance=ExtResource( 1 )]
script = ExtResource( 2 ) script = ExtResource( 2 )

View file

@ -1,9 +1,8 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/clothing/baseClothing.gd" type="Script" id=1] [ext_resource path="res://scripts/clothing/clothing_base.gd" type="Script" id=1]
[ext_resource path="res://sounds/select_001.ogg" type="AudioStream" id=2] [ext_resource path="res://sounds/select_001.ogg" type="AudioStream" id=2]
[node name="baseClothing" type="TextureButton"] [node name="baseClothing" type="TextureButton"]
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 1.0 anchor_bottom = 1.0

View file

@ -1,7 +1,9 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[node name="topsBase" instance=ExtResource( 1 )] [node name="topsBase" instance=ExtResource( 1 )]
script = ExtResource( 2 ) script = ExtResource( 2 )

View file

@ -1,7 +1,9 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/clothing/undiesBase.gd" type="Script" id=1] [ext_resource path="res://scripts/clothing/undies_base.gd" type="Script" id=1]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=2]
[node name="baseClothing" instance=ExtResource( 2 )] [node name="baseClothing" instance=ExtResource( 2 )]
script = ExtResource( 1 ) script = ExtResource( 1 )

View file

@ -1,11 +1,12 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://scenes/clothing/base/accessoryBase.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/accessory_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://sprites/clothes/camera.png" type="Texture" id=2] [ext_resource path="res://sprites/clothes/camera.png" type="Texture" id=2]
[node name="camera" instance=ExtResource( 1 )] [node name="camera" instance=ExtResource( 1 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0

View file

@ -1,12 +1,9 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/bottomsBase.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,8 +1,10 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://sprites/clothes/blue_camo_jeans.svg" type="Texture" id=1] [ext_resource path="res://sprites/clothes/blue_camo_jeans.svg" type="Texture" id=1]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=2]
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=3] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=3]

View file

@ -1,13 +0,0 @@
[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/baseClothing.tscn" type="PackedScene" id=2]
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=3]
[node name="camoJeans" instance=ExtResource( 2 )]
texture_normal = ExtResource( 1 )
script = ExtResource( 3 )
[connection signal="pressed" from="." to="." method="_on_bottoms_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/bottoms_base.gd" type="Script" id=2]
[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 )
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]

View file

@ -1,10 +1,9 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/bottomsBase.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

@ -1,10 +1,12 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/jeans.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/jeans.svg" type="Texture" id=3]
[node name="jeans" instance=ExtResource( 1 )] [node name="jeans" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 ) texture_normal = ExtResource( 3 )
script = ExtResource( 2 ) script = ExtResource( 2 )

View file

@ -1,10 +1,12 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/blue_skirt.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/blue_skirt.svg" type="Texture" id=3]
[node name="skirt" instance=ExtResource( 1 )] [node name="skirt" instance=ExtResource( 1 )]
texture_normal = ExtResource( 3 ) texture_normal = ExtResource( 3 )
script = ExtResource( 2 ) script = ExtResource( 2 )

View file

@ -1,8 +1,10 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://sprites/clothes/sweat_pants.svg" type="Texture" id=1] [ext_resource path="res://sprites/clothes/sweat_pants.svg" type="Texture" id=1]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=2]
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=3] [ext_resource path="res://scripts/clothing/bottoms_base.gd" type="Script" id=3]
[node name="sweatPants" instance=ExtResource( 2 )] [node name="sweatPants" instance=ExtResource( 2 )]
texture_normal = ExtResource( 1 ) texture_normal = ExtResource( 1 )

View file

@ -1,7 +1,7 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/atomic_shirt.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/atomic_shirt.svg" type="Texture" id=3]
[node name="atomicShirt" instance=ExtResource( 1 )] [node name="atomicShirt" instance=ExtResource( 1 )]

View file

@ -1,7 +1,7 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/dj_shirt.png" type="Texture" id=3] [ext_resource path="res://sprites/clothes/dj_shirt.png" type="Texture" id=3]
[node name="djShirt" instance=ExtResource( 1 )] [node name="djShirt" instance=ExtResource( 1 )]

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

@ -1,7 +1,7 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/korm_shirt.png" type="Texture" id=3] [ext_resource path="res://sprites/clothes/korm_shirt.png" type="Texture" id=3]
[node name="kormShirt" instance=ExtResource( 1 )] [node name="kormShirt" instance=ExtResource( 1 )]

View file

@ -1,7 +1,7 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/nl_jacket.png" type="Texture" id=3] [ext_resource path="res://sprites/clothes/nl_jacket.png" type="Texture" id=3]
[node name="nlShirt" instance=ExtResource( 1 )] [node name="nlShirt" instance=ExtResource( 1 )]

View file

@ -1,9 +1,11 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/raw_shirt.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/raw_shirt.svg" type="Texture" id=3]
[node name="rawShirt" instance=ExtResource( 1 )] [node name="rawShirt" 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/nl_jacket.png" type="Texture" id=3]
[node name="nlShirt" 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

@ -1,7 +1,7 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/whatsnew_shirt.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/whatsnew_shirt.svg" type="Texture" id=3]
[node name="whatsNewShirt" instance=ExtResource( 1 )] [node name="whatsNewShirt" instance=ExtResource( 1 )]

View file

@ -1,7 +1,7 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/clothing/base/clothing_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2] [ext_resource path="res://scripts/clothing/tops_base.gd" type="Script" id=2]
[ext_resource path="res://sprites/clothes/z_shirt.png" type="Texture" id=3] [ext_resource path="res://sprites/clothes/z_shirt.png" type="Texture" id=3]
[node name="zShirt" instance=ExtResource( 1 )] [node name="zShirt" instance=ExtResource( 1 )]

View file

@ -1,7 +1,8 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=1] [ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=1]
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/clothing/base/undies_base.tscn" type="PackedScene" id=2]

View file

@ -1,7 +1,8 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://sprites/clothes/fundosi.svg" type="Texture" id=1] [ext_resource path="res://sprites/clothes/fundosi.svg" type="Texture" id=1]
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/clothing/base/undies_base.tscn" type="PackedScene" id=2]

View file

@ -1,7 +1,8 @@
[gd_scene load_steps=3 format=2] [gd_scene load_steps=3 format=2]
[ext_resource path="res://sprites/clothes/z_briefs.svg" type="Texture" id=1] [ext_resource path="res://sprites/clothes/z_briefs.svg" type="Texture" id=1]
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/clothing/base/undies_base.tscn" type="PackedScene" id=2]

View file

@ -1,7 +1,7 @@
[gd_scene load_steps=10 format=2] [gd_scene load_steps=10 format=2]
[ext_resource path="res://scenes/characterBase.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/character_base.tscn" type="PackedScene" id=1]
[ext_resource path="res://sprites/clothes/background.svg" type="Texture" id=2] [ext_resource path="res://sprites/world/background.svg" type="Texture" id=2]
[ext_resource path="res://sprites/ui/blue_boxCross.png" type="Texture" id=3] [ext_resource path="res://sprites/ui/blue_boxCross.png" type="Texture" id=3]
[ext_resource path="res://scenes/wardrobe.tscn" type="PackedScene" id=4] [ext_resource path="res://scenes/wardrobe.tscn" type="PackedScene" id=4]
[ext_resource path="res://sprites/clothes/icrazy_frame.svg" type="Texture" id=5] [ext_resource path="res://sprites/clothes/icrazy_frame.svg" type="Texture" id=5]
@ -28,7 +28,7 @@ position = Vector2( 35.118, -14.56 )
texture = ExtResource( 6 ) texture = ExtResource( 6 )
[node name="characterBase" parent="." instance=ExtResource( 1 )] [node name="characterBase" parent="." instance=ExtResource( 1 )]
position = Vector2( 126.596, 319.219 ) position = Vector2( 145.146, 205.536 )
[node name="ui" type="CanvasLayer" parent="."] [node name="ui" type="CanvasLayer" parent="."]
@ -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,25 +1,21 @@
[gd_scene load_steps=21 format=2] [gd_scene load_steps=17 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://scenes/clothing/undies/zBriefs.tscn" type="PackedScene" 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/whatsNewShirt.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/zShirt.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/kormShirt.tscn" type="PackedScene" id=13] [ext_resource path="res://scenes/clothing/tops/atomic_shirt.tscn" type="PackedScene" id=15]
[ext_resource path="res://scenes/clothing/tops/djShirt.tscn" type="PackedScene" id=14]
[ext_resource path="res://scenes/clothing/tops/atomicShirt.tscn" type="PackedScene" id=15]
[ext_resource path="res://scenes/clothing/tops/nlShirt.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/undies/briefs.tscn" type="PackedScene" id=20] [ext_resource path="res://scenes/clothing/tops/retro_shirt.tscn" type="PackedScene" id=18]
[ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21] [ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21]
[ext_resource path="res://scenes/clothing/undies/fundosi.tscn" type="PackedScene" id=22]
[node name="Wordrobe" type="TabContainer"] [node name="Wordrobe" type="TabContainer"]
anchor_right = 1.0 anchor_right = 1.0
@ -57,62 +53,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 = 112.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 = 216.0 margin_right = 227.0
margin_bottom = 112.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 = 220.0
margin_right = 326.0
margin_bottom = 112.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 = 330.0 margin_left = 231.0
margin_right = 436.0 margin_right = 342.0
margin_bottom = 112.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 = 116.0 margin_left = 346.0
margin_right = 106.0 margin_right = 457.0
margin_bottom = 228.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 = 116.0 margin_right = 113.0
margin_right = 216.0 margin_bottom = 258.0
margin_bottom = 228.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 = 220.0 margin_left = 117.0
margin_top = 116.0 margin_top = 132.0
margin_right = 326.0 margin_right = 227.0
margin_bottom = 228.0 margin_bottom = 258.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 = 330.0 margin_left = 231.0
margin_top = 116.0 margin_top = 132.0
margin_right = 436.0 margin_right = 342.0
margin_bottom = 228.0 margin_bottom = 258.0
[node name="Shirts" type="Tabs" parent="."] [node name="Shirts" type="Tabs" parent="."]
visible = false visible = false
@ -137,84 +125,55 @@ size_flags_vertical = 3
columns = 4 columns = 4
[node name="removeShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="removeShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 110.0 margin_right = 106.0
margin_top = 119.0 margin_bottom = 113.0
margin_right = 216.0
margin_bottom = 234.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 )] [node name="atomicShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 15 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 106.0
margin_bottom = 115.0
[node name="kormShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 13 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 110.0 margin_left = 110.0
margin_right = 216.0 margin_right = 216.0
margin_bottom = 115.0 margin_bottom = 113.0
[node name="atomicShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 15 )] [node name="skateShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 4 )]
[node name="nlShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 16 )]
[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 = 220.0 margin_left = 220.0
margin_right = 326.0 margin_right = 326.0
margin_bottom = 115.0 margin_bottom = 113.0
[node name="zShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 11 )] [node name="fullsnackShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 11 )]
anchor_right = 0.0 anchor_right = 0.0
anchor_bottom = 0.0 anchor_bottom = 0.0
margin_left = 330.0 margin_left = 330.0
margin_right = 436.0 margin_right = 436.0
margin_bottom = 115.0 margin_bottom = 113.0
[node name="rawShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 12 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 117.0
margin_right = 106.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_top = 119.0
margin_right = 106.0
margin_bottom = 234.0
[node name="Underwear" type="Tabs" parent="."]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 5.0
margin_top = 40.0
margin_right = -5.0
margin_bottom = -10.0
[node name="UndiesScroll" type="ScrollContainer" parent="Underwear"]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="UndiesGrid" type="GridContainer" parent="Underwear/UndiesScroll"]
margin_right = 790.0
margin_bottom = 450.0
size_flags_horizontal = 3
size_flags_vertical = 3
columns = 3
[node name="fundosi" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 22 )]
margin_right = 106.0
margin_bottom = 112.0
[node name="zBriefs" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 2 )]
margin_left = 110.0
margin_right = 216.0
margin_bottom = 112.0
[node name="briefs" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 20 )]
margin_left = 220.0 margin_left = 220.0
margin_top = 117.0
margin_right = 326.0 margin_right = 326.0
margin_bottom = 112.0 margin_bottom = 229.0
[node name="retroShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 18 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 330.0
margin_top = 117.0
margin_right = 436.0
margin_bottom = 229.0
texture_normal = ExtResource( 2 )
[node name="Accessoires" type="Tabs" parent="."] [node name="Accessoires" type="Tabs" parent="."]
visible = false visible = false
@ -239,13 +198,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,4 +1,4 @@
extends "res://scripts/clothing/baseClothing.gd" extends "res://scripts/clothing/clothing_base.gd"
func _on_accessory_pressed(): func _on_accessory_pressed():
character.accessory = texture_normal character.accessory = texture_normal

View file

@ -1,4 +1,4 @@
extends "res://scripts/clothing/baseClothing.gd" extends "res://scripts/clothing/clothing_base.gd"
func _on_bottoms_pressed(): func _on_bottoms_pressed():
character.bottom = texture_normal character.bottom = texture_normal

View file

@ -1,4 +1,4 @@
extends "res://scripts/clothing/baseClothing.gd" extends "res://scripts/clothing/clothing_base.gd"
func _on_tops_pressed(): func _on_tops_pressed():
character.top = texture_normal character.top = texture_normal

View file

@ -1,4 +1,4 @@
extends "res://scripts/clothing/baseClothing.gd" extends "res://scripts/clothing/clothing_base.gd"
func _on_undies_pressed(): func _on_undies_pressed():
character.underwear = texture_normal character.underwear = texture_normal

16
scripts/game_info.gd Normal file
View file

@ -0,0 +1,16 @@
extends Node
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass

View file

@ -1,12 +1,18 @@
tool
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_top = preload("res://sprites/clothes/blank_top.png") onready var blank_accessory = preload("res://sprites/clothes/blank_top.png")
onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png") onready var base_top = preload("res://sprites/character_base_top.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_top character.accessory = blank_accessory
character.bottom = blank_bottom character.bottom = base_bottom
character.top = blank_top character.top = base_top

View file

@ -1,12 +1,13 @@
extends TabContainer extends TabContainer
onready var character = preload("res://resources/character.tres") onready var character = preload("res://resources/character.tres")
onready var blank_top = preload("res://sprites/clothes/blank_top.png") onready var blank_accessory = preload("res://sprites/clothes/blank_top.png")
onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png") onready var base_top = preload("res://sprites/character_base_top.svg")
onready var base_bottom = preload("res://sprites/character_base_legs.svg")
onready var pants_grid = $Pants/PantsScroll/PantsGrid onready var pants_grid = $Pants/PantsScroll/PantsGrid
onready var shirts_grid = $Shirts/ShirtsScroll/ShirtsGrid onready var shirts_grid = $Shirts/ShirtsScroll/ShirtsGrid
onready var undies_grid = $Underwear/UndiesScroll/UndiesGrid #onready var undies_grid = $Underwear/UndiesScroll/UndiesGrid
onready var accs_grid = $Accessoires/AccsScroll/AccsGrid onready var accs_grid = $Accessoires/AccsScroll/AccsGrid
func list_files_in_directory(path): func list_files_in_directory(path):
@ -44,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,21 +62,15 @@ func check_for_dlc(dlc_pack):
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():
character.accessory = blank_top character.accessory = blank_accessory
func _on_removePants_pressed(): func _on_removePants_pressed():
character.bottom = blank_bottom character.bottom = base_bottom
func _on_removeShirt_pressed(): func _on_removeShirt_pressed():
character.top = blank_top character.top = base_top

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,40 +7,41 @@
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="43.391666mm" sodipodi:docname="character_base.svg"
height="86.518753mm" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
viewBox="0 0 43.391666 86.518753"
version="1.1"
id="svg8" id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)" version="1.1"
sodipodi:docname="character_base.svg"> viewBox="0 0 43.377262 37.227165"
height="37.227165mm"
width="43.377262mm">
<defs <defs
id="defs2" /> id="defs2" />
<sodipodi:namedview <sodipodi:namedview
id="base" inkscape:document-rotation="0"
pagecolor="#ffffff" inkscape:lockguides="false"
bordercolor="#666666" inkscape:window-maximized="1"
borderopacity="1.0" inkscape:window-y="-9"
inkscape:pageopacity="0.0" inkscape:window-x="-9"
inkscape:pageshadow="2" inkscape:window-height="1001"
inkscape:zoom="2.8" inkscape:window-width="1920"
inkscape:cx="86.349322"
inkscape:cy="146.4697"
inkscape:document-units="mm"
inkscape:current-layer="layer3"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:pagecheckerboard="true"
showguides="true" showguides="true"
inkscape:window-width="958" inkscape:pagecheckerboard="true"
inkscape:window-height="991" fit-margin-bottom="0"
inkscape:window-x="-8" fit-margin-right="0"
inkscape:window-y="0" fit-margin-left="0"
inkscape:window-maximized="0" fit-margin-top="0"
inkscape:lockguides="false" /> showgrid="false"
inkscape:current-layer="layer2"
inkscape:document-units="mm"
inkscape:cy="121.24583"
inkscape:cx="93.607727"
inkscape:zoom="2.8"
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>
@ -51,149 +50,115 @@
<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" style="display:inline"
inkscape:groupmode="layer" transform="translate(-76.736396,-103.45983)"
id="layer1" id="layer1"
transform="translate(-76.57798,-103.3061)"
style="display:inline" />
<g
inkscape:groupmode="layer" inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<g
transform="translate(-0.15841594,-0.15372664)"
sodipodi:insensitive="true"
inkscape:label="Color"
id="layer3" id="layer3"
inkscape:label="Color"> inkscape:groupmode="layer">
<path <path
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cccc"
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" inkscape:connector-curvature="0"
id="path864" id="path864"
inkscape:connector-curvature="0" 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"
sodipodi:nodetypes="cccc" /> 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
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cccccccscccccccccc"
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.707495,3.473391 3.168393,4.548419 1.635877,2.807358 2.473664,10.092655 1.22558,18.886106 0.123737,9.510183 1.737466,16.423656 1.039433,27.119792 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 6.523881,-16.184507 8.976934,-23.718007 -4.857104,0.28571 -5.3976359,-3.203427 -2.267857,-6.756323 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.338792,-1.754093 0.344395,-5.168508 -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" inkscape:connector-curvature="0"
id="path831-5" id="path831-5"
inkscape:connector-curvature="0" 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.707495,3.473391 3.168393,4.548419 2.475619,10.439903 -17.224345,5.695069 -9.782977,-1.241126 2.338792,-1.754093 0.344395,-5.168508 -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"
sodipodi:nodetypes="cccccccsccccccccccscccccccc" /> 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:1.42187285;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cccc"
d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z" inkscape:connector-curvature="0"
id="path868-9" id="path868-9"
inkscape:connector-curvature="0" d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z"
sodipodi:nodetypes="cccc" /> style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:1.42187;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.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" inkscape:connector-curvature="0"
d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733"
id="path845" id="path845"
inkscape:connector-curvature="0" /> d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733"
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:#6699cc;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0"
d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
id="path833-7" id="path833-7"
inkscape:connector-curvature="0" /> d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
style="fill:#6699cc;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.26458332px;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 -2.406213,2.614718 -1.982885,4.060169 0.59027,2.01547 3.806676,4.399895 4.250742,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
id="path847"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="scscszs" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27.061041,29.256257 c 0,0 2.289171,4.408208 2.043123,9.165021 -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,-1.336347 -2.739511,-1.336347 z"
id="path849"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czcsc" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 26.44683,29.067269 c 1.452313,2.918211 2.197082,6.224576 2.137617,9.354009 -0.07867,4.140228 1.79539,12.425968 1.79539,12.425968 0.739806,0.173775 1.322916,-11.953493 1.322916,-11.953493 l -1.792544,-7.594071 c 0,0 -4.132854,-3.577626 -3.463379,-2.232413 z"
id="path853"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssccs" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 15.875,51.177978 c -0.52762,2.533268 5.841867,9.630703 8.315476,11.103052 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.984465,-13.494579 2.456845,-10.961311 z"
id="path857"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zczczzcczscz" />
<path
style="fill:#333333;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862"
id="path5043" id="path5043"
inkscape:connector-curvature="0" /> d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862"
style="fill:#333333;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.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945"
id="path5045"
inkscape:connector-curvature="0" />
<path
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.1354861,0.8014286 2.416225,12.2009554 c 0,0 4.4513719,9.762022 4.2049839,7.039802 C 11.698277,8.3482626 18.952931,7.8743621 18.952931,7.8743621 L 10.961309,2.4662981 6.1354861,0.8014286"
id="path5057"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" /> id="path5045"
d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945"
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.50904238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccsccc"
d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z" inkscape:connector-curvature="0"
id="path5057"
d="m 6.1354861,0.8014286 2.416225,12.2009554 c 0,0 4.4513719,9.762022 4.2049839,7.039802 C 11.698277,8.3482626 18.952931,7.8743621 18.952931,7.8743621 L 10.961309,2.4662981 6.1354861,0.8014286"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path5059" id="path5059"
inkscape:connector-curvature="0" /> d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.509042;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
<g <g
inkscape:groupmode="layer" transform="translate(-0.15841594,-0.15372664)"
id="layer2"
inkscape:label="Re-ink"
style="display:inline" style="display:inline"
sodipodi:insensitive="true"> inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path <path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="csc"
d="m 31.324776,3.8055155 c 0,0 1.628858,-3.7746833 2.315104,-2.93216171 2.908313,3.57061041 2.551339,5.04512691 2.551339,5.04512691" inkscape:connector-curvature="0"
id="path868" id="path868"
inkscape:connector-curvature="0" d="m 31.324776,3.8055155 c 0,0 1.628858,-3.7746833 2.315104,-2.93216171 2.908313,3.57061041 2.551339,5.04512691 2.551339,5.04512691"
sodipodi:nodetypes="csc" /> style="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
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cccccccsccccccccc"
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 1.911015,0.232886 3.434163,11.019747 2.186079,19.813197 1.05918,9.510183 1.737464,16.423655 1.039434,27.119792 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 6.5238811,-16.184506 8.9769341,-23.718005 -4.8571037,0.285712 -5.3976359,-3.203428 -2.267857,-6.756325 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456 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" inkscape:connector-curvature="0"
id="path831" id="path831"
inkscape:connector-curvature="0" 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"
sodipodi:nodetypes="cccccccsscccccccccsccccccc" /> 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
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0"
d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
id="path833" id="path833"
inkscape:connector-curvature="0" /> d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
style="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
style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0"
d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z"
id="path852" id="path852"
inkscape:connector-curvature="0" /> d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z"
style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="fill:none;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="cccccccccc"
d="M 16.394717,36.578645 C 14.7459,42.453258 16.671971,54.08376 14.741071,56.942114"
id="path856"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.104165,38.421279 c -0.128659,3.930449 0.525574,10.419337 2.173363,14.126861"
id="path858"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#954b02;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 36.191221,6.1988083 c 1.475475,0.093714 2.749367,-0.7672527 3.685267,-1.937128 -0.984779,1.0141105 -1.765835,2.2334628 -2.504093,3.3072918 2.133612,1.7021153 3.912086,3.8270629 5.24442,6.0476189 -0.586645,-1.102272 -1.544523,-1.49074 -2.456845,-1.889881 1.783386,2.334899 2.199066,5.602939 2.785607,8.389009 C 42.57481,18.1 41.656138,15.640345 39.970982,14.797767 c 1.672285,4.035542 -5.032759,5.990928 -5.24442,6.142114 0.232289,-2.788186 -0.103225,-5.882573 -1.74814,-7.654019 -0.337072,-3.356912 1.47948,-6.5602442 3.212799,-7.0870537 z"
id="path860" id="path860"
d="m 36.191221,6.1988083 c 1.475475,0.093714 2.749367,-0.7672527 3.685267,-1.937128 -0.984779,1.0141105 -1.765835,2.2334628 -2.504093,3.3072918 2.133612,1.7021153 3.912086,3.8270629 5.24442,6.0476189 -0.586645,-1.102272 -1.544523,-1.49074 -2.456845,-1.889881 1.783386,2.334899 2.199066,5.602939 2.785607,8.389009 C 42.57481,18.1 41.656138,15.640345 39.970982,14.797767 c 1.672285,4.035542 -5.032759,5.990928 -5.24442,6.142114 0.232289,-2.788186 -0.103225,-5.882573 -1.74814,-7.654019 -0.337072,-3.356912 1.47948,-6.5602442 3.212799,-7.0870537 z"
style="fill:#954b02;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
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccc" />
<path
style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z"
id="path870" id="path870"
inkscape:connector-curvature="0" /> d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z"
style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="fill:none;stroke:#000000;stroke-width:1.18375635;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0"
d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621"
id="path5047" id="path5047"
inkscape:connector-curvature="0" /> d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621"
style="fill:none;stroke:#000000;stroke-width:1.18376;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,163 @@
<?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="character_base_head.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 43.377263 31.415143"
height="31.415144mm"
width="43.377262mm">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:lockguides="false"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
showguides="true"
inkscape:pagecheckerboard="true"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
showgrid="false"
inkscape:current-layer="layer2"
inkscape:document-units="mm"
inkscape:cy="116.76192"
inkscape:cx="99.955459"
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(-76.736396,-103.45983)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<g
transform="translate(-0.15841594,-0.15372664)"
inkscape:label="Color"
id="layer3"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path864"
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" />
<path
sodipodi:nodetypes="cccccccsczcccccccc"
inkscape:connector-curvature="0"
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 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" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path868-9"
d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:1.42187;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path845"
d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path833-7"
d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
style="fill:#6699cc;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
inkscape:connector-curvature="0"
id="path5043"
d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862"
style="fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path5045"
d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945"
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path5057"
d="m 6.1354861,0.8014286 2.416225,12.2009554 c 0,0 4.4513719,9.762022 4.2049839,7.039802 C 11.698277,8.3482626 18.952931,7.8743621 18.952931,7.8743621 L 10.961309,2.4662981 6.1354861,0.8014286"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path5059"
d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.509042;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="translate(-0.15841594,-0.15372664)"
style="display:inline"
inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path868"
d="m 31.324776,3.8055155 c 0,0 1.628858,-3.7746833 2.315104,-2.93216171 2.908313,3.57061041 2.551339,5.04512691 2.551339,5.04512691"
style="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="cccccccsccccccccc"
inkscape:connector-curvature="0"
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.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" />
<path
inkscape:connector-curvature="0"
id="path833"
d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
style="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
inkscape:connector-curvature="0"
id="path852"
d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z"
style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccccc"
inkscape:connector-curvature="0"
id="path860"
d="m 36.191221,6.1988083 c 1.475475,0.093714 2.749367,-0.7672527 3.685267,-1.937128 -0.984779,1.0141105 -1.765835,2.2334628 -2.504093,3.3072918 2.133612,1.7021153 3.912086,3.8270629 5.24442,6.0476189 -0.586645,-1.102272 -1.544523,-1.49074 -2.456845,-1.889881 1.783386,2.334899 2.199066,5.602939 2.785607,8.389009 C 42.57481,18.1 41.656138,15.640345 39.970982,14.797767 c 1.672285,4.035542 -5.032759,5.990928 -5.24442,6.142114 0.232289,-2.788186 -0.103225,-5.882573 -1.74814,-7.654019 -0.337072,-3.356912 1.47948,-6.5602442 3.212799,-7.0870537 z"
style="fill:#954b02;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
inkscape:connector-curvature="0"
id="path870"
d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z"
style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path5047"
d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621"
style="fill:none;stroke:#000000;stroke-width:1.18376;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="StreamTexture"
path.s3tc="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.s3tc.stex"
path.etc2="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc2.stex"
path.etc="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc.stex"
metadata={
"imported_formats": [ "s3tc", "etc2", "etc" ],
"vram_texture": true
}
[deps]
source_file="res://sprites/character_base_head.svg"
dest_files=[ "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.s3tc.stex", "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc2.stex", "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc.stex" ]
[params]
compress/mode=2
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=true
flags/filter=true
flags/mipmaps=true
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

@ -0,0 +1,94 @@
<?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="character_base_legs.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 29.356466 33.044505"
height="33.044506mm"
width="29.356466mm">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:lockguides="false"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
showguides="true"
inkscape:pagecheckerboard="true"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
showgrid="false"
inkscape:current-layer="layer3"
inkscape:document-units="mm"
inkscape:cy="-7.1041414"
inkscape:cx="188.27602"
inkscape:zoom="2.8"
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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(-81.705925,-156.90922)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<g
transform="translate(-5.1279453,-53.603123)"
inkscape:label="Color"
id="layer3"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="cccccccc"
inkscape:connector-curvature="0"
id="path831-5"
d="m 31.277528,53.606473 c 0.123737,9.510183 1.595727,13.002971 0.897694,23.699107 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 9.457066,-19.113432 10.067485,-26.954038 6.174568,-0.184322 8.74291,-0.05561 15.445906,-0.09961 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="zczczzcczscz"
inkscape:connector-curvature="0"
id="path857"
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.8033341,-3.743327 -10.488839,-5.57515 3.2620156,-4.545801 8.268229,-18.355467 8.268229,-18.355467 0,0 1.765492,-10.541641 1.237872,-8.008373 z"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(-5.1279453,-53.603123)"
style="display:inline"
inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path831"
d="m 31.277528,53.606473 c -0.05112,9.15583 1.595725,13.00297 0.897695,23.699107 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 15.717297,60.625371 15.831622,53.706083"
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>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="StreamTexture"
path.s3tc="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.s3tc.stex"
path.etc2="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc2.stex"
path.etc="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc.stex"
metadata={
"imported_formats": [ "s3tc", "etc2", "etc" ],
"vram_texture": true
}
[deps]
source_file="res://sprites/character_base_legs.svg"
dest_files=[ "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.s3tc.stex", "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc2.stex", "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc.stex" ]
[params]
compress/mode=2
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=true
flags/filter=true
flags/mipmaps=true
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

@ -0,0 +1,128 @@
<?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.504625mm"
height="29.090412mm"
viewBox="0 0 24.504625 29.090412"
version="1.1"
id="svg8"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="character_base_top.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="134.93017"
inkscape:cy="43.549062"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:pagecheckerboard="true"
showguides="true"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:lockguides="false"
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 />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-113.05078,-148.95219)"
style="display:inline" />
<g
sodipodi:insensitive="true"
transform="translate(-36.472798,-45.646095)"
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Color" />
<g
transform="translate(-36.472798,-45.646095)"
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Re-ink"
style="display:inline">
<g
inkscape:label="Layer 1"
id="layer1-0"
transform="translate(-48.000601,-87.118817)"
style="display:inline" />
<path
sodipodi:nodetypes="ccczccccc"
inkscape:connector-curvature="0"
id="path831-5"
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"
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" />
<path
sodipodi:nodetypes="scscszs"
inkscape:connector-curvature="0"
id="path847"
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"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cssccc"
inkscape:connector-curvature="0"
id="path853"
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"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
transform="translate(28.577379,16.187282)"
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 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"
id="path831"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc" />
<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>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

View file

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="StreamTexture"
path.s3tc="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.s3tc.stex"
path.etc2="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc2.stex"
path.etc="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc.stex"
metadata={
"imported_formats": [ "s3tc", "etc2", "etc" ],
"vram_texture": true
}
[deps]
source_file="res://sprites/character_base_top.svg"
dest_files=[ "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.s3tc.stex", "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc2.stex", "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc.stex" ]
[params]
compress/mode=2
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=true
flags/filter=true
flags/mipmaps=true
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.9 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,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">
<path
sodipodi:nodetypes="ccczccccc"
inkscape:connector-curvature="0"
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
sodipodi:nodetypes="scscszs"
inkscape:connector-curvature="0"
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
sodipodi:nodetypes="cssccc"
inkscape:connector-curvature="0"
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
transform="translate(321.74668,235.55223)"
id="layer2-2"
inkscape:label="Re-ink" inkscape:label="Re-ink"
transform="translate(-108.95163,-14.177885)"
style="display:inline"> 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="cc"
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="path905"
id="path827" d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
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="csssszzcsc" />
<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" 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 114.37102,34.484873 114.5288,21.056867" 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="path829" 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" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path </g>
style="fill:none;stroke:#000000;stroke-width:0.47876143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" </g>
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"
sodipodi:nodetypes="czc" />
<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

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,12 +7,12 @@
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" width="29.35647mm"
height="29.633333mm" height="33.53791mm"
viewBox="0 0 28.045834 29.633333" viewBox="0 0 29.356471 33.537911"
version="1.1" version="1.1"
id="svg2007" id="svg2007"
inkscape:version="0.92.3 (2405546, 2018-03-11)" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="beat_up_jeans.svg"> sodipodi:docname="beat_up_jeans.svg">
<defs <defs
id="defs2001" /> id="defs2001" />
@ -25,23 +23,24 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="7.9195959" inkscape:zoom="5.6"
inkscape:cx="60.844989" inkscape:cx="80.629541"
inkscape:cy="64.009018" inkscape:cy="69.57743"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer2" inkscape:current-layer="layer3"
showgrid="false" showgrid="false"
inkscape:pagecheckerboard="true" inkscape:pagecheckerboard="true"
fit-margin-top="0" fit-margin-top="0"
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0" fit-margin-bottom="0"
showguides="false" showguides="true"
inkscape:window-width="1920" inkscape:window-width="1920"
inkscape:window-height="1001" inkscape:window-height="1001"
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:document-rotation="0" />
<metadata <metadata
id="metadata2004"> id="metadata2004">
<rdf:RDF> <rdf:RDF>
@ -50,64 +49,85 @@
<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" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-78.959229,-134.01666)" /> transform="translate(-79.069227,-132.62721)">
<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 105.21881,133.12396 c 0.12374,9.51018 1.59573,13.00297 0.8977,23.69911 5.98907,7.62246 -5.46614,9.2572 -8.457225,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.445906,-0.0996 z"
id="path831-5"
inkscape:connector-curvature="0"
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.21152,133.81377 c -0.52762,2.53327 6.446629,6.5124 8.920238,7.98475 4.741472,-1.55146 7.056172,-4.21484 7.606772,-7.65402 0.55061,-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.638158,-0.21053 -9.024185,-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.21881,133.12396 c -0.0511,9.15583 1.59573,13.00297 0.8977,23.69911 5.98907,7.62246 -5.46614,9.2572 -8.457225,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 <g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer3" id="layer3"
inkscape:label="Color" inkscape:label="Color"
sodipodi:insensitive="true"> transform="translate(-0.10999844,1.3894499)">
<path <path
style="fill:#6ba6ff;fill-opacity:1;stroke:none;stroke-width:3.77054548;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="scssccssscsscccc"
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 m -60.5,62.5332035 c 3.450596,-0.05759 10.858829,8.631759 4.982422,13.039062 -0.913931,0.685448 -13.004543,-2.52144 -13.384765,-3.662109 -0.08862,-0.265852 2.027088,-5.375354 2.398437,-5.808594 1.244178,-1.77007 3.518073,-3.102442 5.681641,-3.535156 0.102494,-0.0205 0.210956,-0.03135 0.322265,-0.0332 z" style="fill:#6ba6ff;fill-opacity:1;stroke:none;stroke-width:0.997625;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="scale(0.26458333)" d="m 26.259581,-0.89270032 c -0.02757,-0.001607 -0.05587,6.9398e-4 -0.08508,0.007154 C 21.431898,0.1632433 13.656842,-0.63863731 10.493893,-0.40130241 9.731426,-0.34408986 7.2143042,16.445356 1.1474266,23.807164 c -2.2565464,2.738192 9.9849504,2.451375 10.4350464,0.947215 1.061412,-6.860452 6.178144,-12.966026 6.178144,-12.966026 0,0 0.699758,7.397395 -0.313529,11.285126 -0.805253,3.089559 9.421335,2.733162 9.610912,-0.453529 0.508235,-8.543051 0.938481,-23.41138328 -0.798419,-23.51265032 z M 10.035572,14.315821 c 0.911253,0.05801 2.6807,2.506827 1.037409,3.544509 -0.255574,0.161386 -3.3762168,-0.940863 -3.4522951,-1.24976 -0.017732,-0.07199 0.6486404,-1.374647 0.7557676,-1.481028 0.3656795,-0.440429 0.9936422,-0.743578 1.5734233,-0.811801 0.027465,-0.0032 0.056306,-0.0038 0.085702,-0.0019 z"
id="path2567-7" id="path2567-7"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
</g> </g>
<g <g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" id="layer2"
inkscape:label="Re-ink"> inkscape:label="Re-ink"
transform="translate(-0.10999844,1.3894499)">
<path <path
style="fill:none;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="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"
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" d="M 1.1472366,23.807031 C 7.214114,16.445222 9.731204,-0.34409037 10.493672,-0.40130292 13.65662,-0.63863783 21.431888,0.1633648 26.174491,-0.88542473 28.044057,-1.2988644 27.574433,13.412339 27.058128,22.090993 c -0.189576,3.186689 -10.416449,3.542989 -9.611196,0.453431 1.013287,-3.887731 0.313772,-10.756226 0.313772,-10.756226 0,0 -5.731255,6.767226 -6.178456,12.966217 -0.112972,1.565991 -12.6915573,1.790806 -10.4350114,-0.947384 z"
id="path2567" id="path2567"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssscss" /> sodipodi:nodetypes="ssssscss" />
<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" 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 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" d="m 17.760704,11.788198 c 0,0 1.803984,-2.2553734 1.606735,-4.1401591 -0.197247,-1.8847852 -0.10407,-6.8807165 -0.10407,-6.8807165"
id="path2571" id="path2571"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" /> sodipodi:nodetypes="czc" />
<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" 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 19.695946,9.7169723 20.500613,2.7246489" d="M 19.367439,7.6480389 20.730155,0.7427453"
id="path2573" id="path2573"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path <path
style="fill:#676767;fill-opacity:1;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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" d="m 8.8450597,5.9143433 c 0,0 2.7874103,0.9156671 3.6044253,-0.1664066 0.817017,-1.0820739 0.728683,-5.2682974 0.728683,-5.2682974 l -3.124791,0.50866132 z"
id="path2569" id="path2569"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czccc" /> sodipodi:nodetypes="czccc" />
<path <path
style="fill:#989898;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:#989898;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" d="m 9.801139,0.8984248 c 0,0 0.431518,-0.94434388 0.847201,-0.9183915 4.359426,0.2721721 10.865036,-0.0542454 15.552358,-0.42482457 0.373266,-0.0295108 0.384581,1.05540677 0.146116,1.10325827 C 22.743536,1.381516 9.801139,0.8984248 9.801139,0.8984248 Z"
id="path2583" id="path2583"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="csssc" /> sodipodi:nodetypes="csssc" />
<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" 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" d="m 9.801139,0.8984248 9.3876,0.2809299 7.39654,-0.5687392"
id="path2579" id="path2579"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
</g> </g>

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

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

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,40 +7,41 @@
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="blue_camo_jeans.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="blue_camo_jeans.svg"> viewBox="0 0 29.433051 33.900688"
height="33.900688mm"
width="29.43305mm">
<defs <defs
id="defs2001" /> id="defs2001" />
<sodipodi:namedview <sodipodi:namedview
id="base" inkscape:document-rotation="0"
pagecolor="#ffffff" inkscape:lockguides="true"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="67.738265"
inkscape:cy="72.758833"
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-maximized="1" inkscape:window-maximized="1"
inkscape:lockguides="true" /> 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="layer2"
inkscape:document-units="mm"
inkscape:cy="89.706083"
inkscape:cx="44.629081"
inkscape:zoom="11.2"
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>
@ -56,144 +55,175 @@
</rdf:RDF> </rdf:RDF>
</metadata> </metadata>
<g <g
inkscape:groupmode="layer" sodipodi:insensitive="true"
id="layer2" transform="translate(1.3354295,0.19742842)"
inkscape:label="Re-ink" inkscape:label="legs"
style="display:inline" id="layer1"
sodipodi:insensitive="true"> inkscape:groupmode="layer">
<path <path
style="fill:#003366;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.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" d="m 24.890736,0.662101 c 0.123737,9.510183 1.595726,13.002971 0.897695,23.699107 5.989076,7.622458 -5.466143,9.257208 -8.45722,1.795388 0,-4.946536 0.06144,-10.808711 0.04725,-15.73326 -3.051778,4.577667 -6.271659,11.54185 -7.8430062,17.103424 6.0667862,9.10018 -9.274496,5.51039 -10.15811,0.188989 C 4.4667089,21.451916 8.8344109,8.602317 9.4448298,0.761711 15.619398,0.577389 18.18774,0.706101 24.890736,0.662101 Z"
id="path2567" id="path831-5"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssscss" /> sodipodi:nodetypes="cccccccc" />
<path <path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.16287224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.470484,16.035996 c -1.222803,0.75645 -2.464166,-0.108141 -3.689404,0.146852 -1.003152,0.208774 0.117583,3.77469 1.874943,2.51747" d="m 8.8834461,1.351909 c -0.52762,2.533268 6.4466289,6.5124 8.9202379,7.984749 4.741466,-1.55146 7.056167,-4.214834 7.606771,-7.654018 0.550603,-3.439184 0.377976,22.678568 0.377976,22.678568 0,0 2.678821,4.233217 0.566965,5.764141 -2.111855,1.530925 -7.638158,-0.210531 -9.024185,-3.968753 C 15.945184,22.398375 17.803684,9.336658 17.803684,9.336658 L 9.535455,27.526757 c 0,0 2.807966,4.177086 0.330729,5.764141 C 7.3889471,34.877957 -1.9371501,29.547573 -0.622655,27.715749 2.6393606,23.169948 7.6455742,9.360282 7.6455742,9.360282 c 0,0 1.7654918,-10.541641 1.2378719,-8.008373 z"
id="path2614" id="path857"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18.427399,13.900863 c 0,0 1.115929,-2.081231 1.202639,-3.9103052 0.08671,-1.8290746 -0.589529,-6.9226402 -0.589529,-6.9226402"
id="path2571"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" /> sodipodi:nodetypes="zczczzcczscz" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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 19.627919,9.5159193 20.501823,2.9925194" d="m 24.890736,0.662101 c -0.05112,9.15583 1.595726,13.00297 0.897695,23.699107 5.989074,7.622458 -5.466143,9.257205 -8.45722,1.795387 0,-4.946535 0.06144,-10.808709 0.04725,-15.733259 C 14.326683,15.001004 11.106802,21.965185 9.5354548,27.526757 15.602241,36.62694 0.2609592,33.03715 -0.6226553,27.715747 4.4667091,21.451914 9.330505,7.680999 9.44483,0.761711"
id="path2573" id="path831"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="ccccccc" />
<path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 9.5548856,8.7194926 C 8.7305392,14.948757 19.548317,14.654826 15.334589,9.3876666 14.556928,8.4155909 13.98844,7.6940682 12.828937,7.4499625"
id="path2612"
inkscape:connector-curvature="0" />
<path
style="fill:#333333;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 8.2727251,8.6461754 c 0,0 3.4286959,-0.075289 4.2758559,-1.1339288 0.84716,-1.0586401 0.241967,-3.842526 0.241967,-3.842526 l -3.1712826,0.086388 z"
id="path2569"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czccc" />
<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"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 17.378461,10.423336 C 18.358853,9.5255596 20.263676,8.8393651 21.548606,9.4878927"
id="path2598"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18.37478,11.191736 c -1.268353,0.549435 -2.308696,1.415572 -3.474504,2.071338"
id="path2600"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 20.713388,10.256292 c 0.114075,1.271813 0.770932,2.519239 1.135896,3.674956"
id="path2602"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 20.112032,12.661718 c 0.198181,0.379098 0.133634,0.857634 0.133634,1.302939"
id="path2610"
inkscape:connector-curvature="0" />
<path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.9178596,11.626049 c 0.5494409,0.355012 -0.068162,1.434333 0.233861,1.937704 0.3749281,0.62488 2.1547794,0.04998 2.5056514,0.634765 1.766519,2.944198 -2.8505017,2.980279 -4.3097208,2.104747"
id="path2616"
inkscape:connector-curvature="0" />
<path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 26.593318,5.6458931 c -0.60844,-0.024347 -1.962783,0.1128086 -2.238383,0.8018087 -0.470092,1.1752313 0.412183,1.8266262 0.835218,2.6726951 0.997922,1.9958451 -2.894534,5.5730161 1.804068,5.3119821"
id="path2618"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc" />
<path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 18.976136,17.171891 c 1.274456,-0.196445 2.381553,-0.316593 3.407687,0.367496 0.537516,0.358344 2.923452,1.185894 3.507912,0.835217 0.360982,-0.216589 0.991069,-1.189224 1.002261,-0.7684 0.120692,4.538158 0.820713,2.816793 -4.810852,1.971113 -1.100592,-0.165274 -2.590903,1.43981 -3.006782,0.534539 0,0 -0.270632,-1.974328 -0.100226,-2.939965 z"
id="path2620"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscsssc" />
<path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 5.6794774,18.274379 c 1.9041041,-0.300696 1.5167695,1.017868 2.5056519,2.171564 0.4997965,0.583096 1.6614499,0.325103 2.0713387,0.734991 0.119753,0.119753 0.07008,1.005778 0,1.169304 -1.1679449,2.725205 -4.2555834,0.764116 -5.9801555,-0.467721"
id="path2622"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscc" />
<path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.0067821,24.555212 c 5.2682351,2.02902 0.5412926,5.21361 -1.6184389,2.932734"
id="path2630"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.4722431,27.261317 c 2.4690673,0.273878 4.4470478,-0.03985 6.6483295,-0.734991"
id="path2624"
inkscape:connector-curvature="0" />
<path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27.061041,25.022933 c -5.126407,-2.816767 -5.239849,-1.161859 -5.879931,2.672695 2.302396,0.345091 5.634272,-0.584621 5.879931,-2.672695 z"
id="path2632"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 19.510675,26.259055 c 2.42248,0.323735 4.741824,0.77491 6.748556,-0.801809"
id="path2626"
inkscape:connector-curvature="0" />
<g
id="g2657">
<path
inkscape:connector-curvature="0"
id="path2604"
d="m 18.999166,3.2834423 c -0.04805,1.5545165 -0.562287,2.9032809 -1.459603,4.0997026"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<ellipse
ry="0.28397387"
rx="0.25056517"
cy="7.3664403"
cx="17.472746"
id="path2634"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317234;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
<g <g
id="g2653"> transform="translate(1.3354295,0.19742842)"
style="display:inline"
inkscape:label="Re-ink"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="ssssscss"
inkscape:connector-curvature="0"
id="path2567"
d="M -0.5863583,25.724853 C 5.278864,18.201395 7.8693518,1.2645951 8.6299896,1.1867485 11.785348,0.86381764 20.107907,1.4830208 24.820359,0.3061408 c 1.857679,-0.46393371 0.771809,15.8701792 0.490795,24.5596352 -0.103181,3.190654 -10.316649,3.823866 -9.595386,0.713627 0.907598,-3.913753 1.037215,-12.376365 1.037215,-12.376365 0,0 -5.273276,7.224881 -6.8824952,13.18617 -0.4091834,1.515803 -12.6383874,2.133958 -10.4568461,-0.664355 z"
style="fill:#003366;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
inkscape:transform-center-y="-0.25892104"
inkscape:transform-center-x="-1.671289"
inkscape:connector-curvature="0"
id="path2616"
d="m 6.6696771,10.380127 c 0.555092,0.34611 -0.045033,1.435245 0.2650641,1.933682 0.3849519,0.618756 2.1553051,0.01525 2.5155576,0.594295 1.8137462,2.915341 -2.8020927,3.025838 -4.2752348,2.173941"
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path <path
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path2606" id="path2614"
d="m 20.501823,2.9925195 c 0.561916,1.1250721 1.083725,2.4049651 1.848591,3.3883647" d="m 14.690229,15.159541 c -1.261278,0.690392 -2.454935,-0.238953 -3.691994,-0.04944 -1.0128301,0.155164 -0.0832,3.775604 1.738496,2.61356"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.162872px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="czc"
inkscape:connector-curvature="0"
id="path2571"
d="m 16.757856,13.131431 c 0,0 1.224964,-2.018981 1.408762,-3.8408618 C 18.350416,7.4686881 17.945843,2.346381 17.945843,2.346381"
style="fill:none;stroke:#000000;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2573"
d="M 18.189728,8.8164889 19.409099,2.3487545"
style="fill:none;stroke:#000000;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2612"
d="M 8.1732589,7.4858313 C 7.0190077,13.66248 17.837118,13.943902 13.909282,8.4602377 13.184383,7.4482052 12.655046,6.6974885 11.510155,6.3921031"
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.77423231"
inkscape:transform-center-x="-2.2448198"
sodipodi:nodetypes="csscc"
inkscape:connector-curvature="0"
id="path2622"
d="m 4.3549494,16.7188 c 1.9063217,-0.2863 1.5090357,1.029299 2.489173,2.190433 0.4953766,0.586856 1.6589461,0.337648 2.0657263,0.750621 0.1188447,0.120654 0.062478,1.006279 -0.00884,1.16927 -1.1885021,2.716303 -4.2612352,0.731942 -5.9764509,-0.512891"
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="czccc"
inkscape:connector-curvature="0"
id="path2569"
d="m 6.8968071,7.3444741 c 0,0 3.4278519,0.107044 4.3300779,-0.9050751 0.902227,-1.0121195 0.445846,-3.8242353 0.445846,-3.8242353 l -3.1713919,-0.08228 z"
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2579"
d="m 8.5013391,2.5328836 9.3917649,0.02652 7.378419,-0.7689"
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
inkscape:connector-curvature="0"
id="path2598"
d="M 15.895222,9.6030701 C 16.921943,8.7586679 18.860543,8.1746798 20.10919,8.8905817"
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2600"
d="m 16.849294,10.423336 c -1.295761,0.481249 -2.380667,1.29087 -3.579679,1.883749"
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2602"
d="m 19.234314,9.6135052 c 0.04632,1.2760788 0.635951,2.5566518 0.938976,3.7301318"
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2610"
d="m 18.505965,11.983571 c 0.177753,0.389095 0.08786,0.863524 0.0642,1.3082"
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cssc"
inkscape:connector-curvature="0"
id="path2618"
d="m 25.350965,5.3221259 c -0.606287,-0.05665 -1.966005,0.00833 -2.277834,0.681711 -0.531888,1.1485861 0.31452,1.8459511 0.69199,2.7133075 0.890438,2.0460616 -3.186634,5.4113026 1.5192,5.4003566"
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cscsssc"
inkscape:connector-curvature="0"
id="path2620"
d="m 17.13197,16.427 c 1.283095,-0.128434 2.395013,-0.189572 3.383339,0.548086 0.517712,0.386405 2.856293,1.339592 3.458565,1.020474 0.371983,-0.197098 1.052873,-1.134871 1.041683,-0.714047 -0.12067,4.538159 0.669848,2.856431 -4.908812,1.712643 -1.090253,-0.223534 -2.663764,1.300075 -3.030942,0.37398 0,0 -0.165319,-1.985921 0.05617,-2.941136 z"
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2630"
d="m 1.8511145,22.951154 c 5.152952,2.306146 0.2634372,5.23501 -1.77201905,2.842573"
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2624"
d="M 0.11517487,25.625025 C 2.5661966,26.029741 4.5580555,25.821581 6.793171,25.244415"
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path2632"
d="m 24.788185,24.696638 c -4.969457,-3.085242 -5.170693,-1.438702 -6.013668,2.356414 2.280802,0.46697 5.657381,-0.284347 6.013668,-2.356414 z"
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path2626"
d="m 17.182794,25.52973 c 2.40185,0.452026 4.693937,1.025831 6.781632,-0.442007"
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="rotate(3.0465628,32.059698,-17.875049)"
id="g2657">
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 18.999166,3.2834423 c -0.04805,1.5545165 -0.562287,2.9032809 -1.459603,4.0997026"
id="path2604"
inkscape:connector-curvature="0" />
<ellipse <ellipse
ry="0.28397387" style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.313172;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2634"
cx="17.472746"
cy="7.3664403"
rx="0.25056517" rx="0.25056517"
cy="6.3808842" ry="0.28397387" />
cx="22.367119" </g>
<g
transform="rotate(3.0465628,32.059698,-17.875049)"
id="g2653">
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 20.501823,2.9925195 c 0.561916,1.1250721 1.083725,2.4049651 1.848591,3.3883647"
id="path2606"
inkscape:connector-curvature="0" />
<ellipse
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.313172;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2634-8" id="path2634-8"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317234;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> cx="22.367119"
cy="6.3808842"
rx="0.25056517"
ry="0.28397387" />
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 13 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,12 +7,12 @@
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" width="29.35652mm"
height="29.633333mm" height="33.545071mm"
viewBox="0 0 28.045834 29.633333" viewBox="0 0 29.35652 33.54507"
version="1.1" version="1.1"
id="svg2007" id="svg2007"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="blue_skirt.svg"> sodipodi:docname="blue_skirt.svg">
<defs <defs
id="defs2001" /> id="defs2001" />
@ -25,9 +23,9 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="7.9195959" inkscape:zoom="3.959798"
inkscape:cx="78.143852" inkscape:cx="109.73297"
inkscape:cy="76.635925" inkscape:cy="72.645807"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer2" inkscape:current-layer="layer2"
showgrid="false" showgrid="false"
@ -39,9 +37,10 @@
showguides="false" showguides="false"
inkscape:window-width="1920" inkscape:window-width="1920"
inkscape:window-height="1001" inkscape:window-height="1001"
inkscape:window-x="1911" inkscape:window-x="-9"
inkscape:window-y="-9" inkscape:window-y="-9"
inkscape:window-maximized="1" /> inkscape:window-maximized="1"
inkscape:document-rotation="0" />
<metadata <metadata
id="metadata2004"> id="metadata2004">
<rdf:RDF> <rdf:RDF>
@ -50,53 +49,78 @@
<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" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-78.959229,-134.01666)" /> transform="translate(-78.759156,-135.36182)">
<g
transform="translate(-32.909263,-2.4877758)"
id="g1459">
<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 137.81805,138.35351 c 0.12374,9.51018 1.59573,13.00297 0.8977,23.69911 5.98907,7.62246 -5.46614,9.2572 -8.45722,1.79539 0,-4.94654 0.0614,-10.80872 0.0472,-15.73327 -3.05178,4.57767 -6.27166,11.54186 -7.84301,17.10343 6.06679,9.10018 -9.2745,5.51039 -10.15811,0.18899 5.08936,-6.26383 9.45707,-19.11343 10.06749,-26.95404 6.17456,-0.18432 8.74291,-0.0556 15.4459,-0.0996 z"
id="path831-5-6"
inkscape:connector-curvature="0"
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 121.81076,139.04332 c -0.52762,2.53327 6.44663,6.5124 8.92024,7.98475 4.74147,-1.55146 7.05617,-4.21484 7.60677,-7.65402 0.55061,-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.63816,-0.21053 -9.02418,-3.96875 -1.38603,-3.75823 0.47247,-16.81994 0.47247,-16.81994 l -8.26823,18.1901 c 0,0 2.80797,4.17708 0.33073,5.76414 -2.47724,1.58706 -11.80333,-3.74333 -10.48884,-5.57515 3.26202,-4.5458 8.26823,-18.35547 8.26823,-18.35547 0,0 1.76549,-10.54164 1.23787,-8.00837 z"
id="path857-3"
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 137.81805,138.35351 c -0.0511,9.15583 1.59573,13.00297 0.8977,23.69911 5.98907,7.62246 -5.46614,9.2572 -8.45722,1.79538 0,-4.94653 0.0614,-10.8087 0.0472,-15.73326 -3.05178,4.57767 -6.27166,11.54185 -7.84301,17.10343 6.06679,9.10018 -9.2745,5.51039 -10.15811,0.18899 5.08936,-6.26384 9.95316,-20.03475 10.06749,-26.95404"
id="path831-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
</g>
</g>
<g <g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" id="layer2"
inkscape:label="Re-ink"> inkscape:label="Re-ink"
transform="translate(0.20007337,-1.345165)">
<path <path
style="fill:#4791ff;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="fill:#4791ff;fill-opacity:1;stroke:#000000;stroke-width:1.00215;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 0.0682,1.125724 -2.223008,0.683836 -3.34087,0.53454 -0.375462,-0.05015 -0.656939,-0.460713 -1.03567,-0.467722 -1.238515,-0.02292 -2.203485,1.455757 -3.441095,1.403165 -0.587163,-0.02495 -0.983564,-0.766695 -1.570208,-0.801809 -1.255555,-0.07515 -2.06806,1.45325 -3.541321,1.302939 -0.411705,-0.042 -0.722174,-0.491133 -1.135896,-0.50113 -1.240516,-0.02998 -2.234561,1.288171 -3.474503,1.336348 C 9.131624,19.352455 8.1694591,18.48351 7.0826425,18.374604 5.9700902,18.263119 3.2661714,19.687213 3.7417734,18.675282 8.4283356,8.7037569 10.089425,2.5388847 10.089425,2.5388847 Z" d="m 10.503608,1.9486847 15.44595,-0.09961 c 0,0 1.111833,8.2847073 1.583283,16.0027623 0.06877,1.125724 -2.241517,0.683836 -3.368686,0.53454 -0.378588,-0.05015 -0.662409,-0.460713 -1.044293,-0.467722 -1.248827,-0.02292 -2.221831,1.455757 -3.469745,1.403165 -0.592052,-0.02495 -0.991753,-0.766695 -1.583281,-0.801809 -1.266009,-0.07515 -2.085279,1.45325 -3.570806,1.302939 -0.415133,-0.042 -0.728187,-0.491133 -1.145353,-0.50113 -1.250845,-0.02998 -2.253166,1.288171 -3.503431,1.336348 C 8.7467225,20.700575 7.7765467,19.83163 6.6806814,19.722724 5.5588662,19.611239 2.8324349,21.035333 3.3119967,20.023402 8.0375786,10.051877 10.503608,1.9486847 10.503608,1.9486847 Z"
id="path824" id="path824"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssssssssssc" /> sodipodi:nodetypes="ccssssssssssc" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8.3187639,16.904622 C 13.931424,5.2783972 12.795528,5.6458929 12.795528,5.6458929" d="M 8.0889939,18.252742 C 13.701654,6.6265173 12.565758,6.994013 12.565758,6.994013"
id="path826" id="path826"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 12.828937,9.3542576 c -0.7684,4.2763124 -0.233861,7.3165034 -0.233861,7.3165034" d="m 12.599167,10.702378 c -0.7684,4.276312 -0.233861,7.316503 -0.233861,7.316503"
id="path828" id="path828"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 15.935946,16.069405 C 17.907058,9.187214 17.071841,5.6124842 17.071841,5.6124842" d="M 15.706176,17.417525 C 17.677288,10.535334 16.842071,6.9606043 16.842071,6.9606043"
id="path830" id="path830"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 17.895223,8.575149 c 0.360691,4.329803 1.661365,7.129221 1.661365,7.129221" d="m 17.665453,9.9232691 c 0.360691,4.3298029 1.661365,7.1292209 1.661365,7.1292209"
id="path828-1" id="path828-1"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 23.175166,15.213039 C 22.814475,10.883236 21.513801,8.0838183 21.513801,8.0838183" d="M 22.945396,16.561159 C 22.584705,12.231356 21.284031,9.4319384 21.284031,9.4319384"
id="path828-1-6" id="path828-1-6"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 24.578978,15.782268 C 22.607866,8.9000772 23.443083,5.3253473 23.443083,5.3253473" d="M 24.349208,17.130388 C 22.378096,10.248197 23.213313,6.6734674 23.213313,6.6734674"
id="path830-6" id="path830-6"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
</g> </g>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

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/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/classic_dress_up_bg.png"
dest_files=[ "res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.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,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/classic_dress_up_blurred_bg.png"
dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.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

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/dj_shorts.png"
dest_files=[ "res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.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="svg815" id="svg815"
width="106" width="113.25831"
height="112" height="125.01931"
viewBox="0 0 106 112" viewBox="0 0 113.25831 125.01931"
sodipodi:docname="dj_shorts.svg" sodipodi:docname="dj_shorts.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
<metadata <metadata
id="metadata821"> id="metadata821">
<rdf:RDF> <rdf:RDF>
@ -24,7 +22,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>
@ -44,31 +42,65 @@
id="namedview817" id="namedview817"
showgrid="false" showgrid="false"
inkscape:zoom="10.202541" inkscape:zoom="10.202541"
inkscape:cx="63.855679" inkscape:cx="98.573183"
inkscape:cy="78.557618" inkscape:cy="50.799978"
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="layer3" inkscape:current-layer="layer2"
inkscape:pagecheckerboard="true" inkscape:pagecheckerboard="true"
fit-margin-top="0" fit-margin-top="0"
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: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(0.60396188,-1.5247525)" transform="translate(7.6590499,-5.4233452)"
style="display:inline" style="display:inline">
sodipodi:insensitive="true" /> <path
sodipodi:nodetypes="cccccccc"
inkscape:connector-curvature="0"
id="path831-5"
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"
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
sodipodi:nodetypes="zczczzcczscz"
inkscape:connector-curvature="0"
id="path857"
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"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path831"
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"
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
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"
id="path3894" />
<path
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"
id="path3896" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
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"
id="path3900"
sodipodi:nodetypes="ccccc" />
</g>
<g <g
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer3" id="layer3"
inkscape:label="Color"> inkscape:label="Color"
transform="translate(7.055088,-3.8985927)">
<path <path
style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:2.64566922;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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"
d="M 34.4447,14.931388 C 29.720644,11.370567 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 43.301389,21.607237 34.4447,14.931388 Z" 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"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ssscsssss" /> sodipodi:nodetypes="ssscsssss" />
@ -91,7 +123,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="csscc" /> sodipodi:nodetypes="csscc" />
<path <path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06605935px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 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"
id="path938-9" id="path938-9"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -101,41 +133,41 @@
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(7.055088,-3.8985927)">
<path <path
style="fill:none;stroke:#000000;stroke-width:2.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;stroke:#000000;stroke-width:3.02362205;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 34.052641,14.049255 C 30.426972,9.3747839 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.066901,21.803268 34.052641,14.049255 Z" 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"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ssscssszs" /> sodipodi:nodetypes="ssscssszs" />
<path
style="fill:none;stroke:#000000;stroke-width:2.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
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"
id="path957"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" />
<ellipse <ellipse
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.51181;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path852" id="path852"
cx="66.488861" cx="66.488861"
cy="21.361532" cy="21.361532"
rx="7.6451545" rx="7.6451545"
ry="5.6358509" /> ry="5.6358509" />
<path <path
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccc"
id="path1467"
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"
id="path844" id="path844"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="csccsc" /> sodipodi:nodetypes="csccsc" />
<path <path
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.5186137;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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"
id="path850" id="path850"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ccczcsc" /> sodipodi:nodetypes="ccczcsc" />
<path <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" 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 45.917706,17.152095 c -2.80724,-0.03648 -14.452359,2.531073 -14.452359,2.531073 l -1.247525,2.633664 c 0,0 15.001373,-3.95413 18.749389,-4.333054 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"
id="path959" id="path959"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="zcczz" /> sodipodi:nodetypes="zcczz" />

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/dressup_blurred_wardrobe.png"
dest_files=[ "res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.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,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/dressup_panel.svg"
dest_files=[ "res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.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,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/dressup_wardrobe.png"
dest_files=[ "res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.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,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/dressup_wardrobe.svg"
dest_files=[ "res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.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="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

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="svg1568"
width="106"
height="112"
viewBox="0 0 106 112"
sodipodi:docname="fundosi.svg" sodipodi:docname="fundosi.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"> viewBox="0 0 110.95358 129.13097"
height="129.13097"
width="110.95358"
id="svg1568"
version="1.1">
<metadata <metadata
id="metadata1574"> id="metadata1574">
<rdf:RDF> <rdf:RDF>
@ -31,72 +29,109 @@
<defs <defs
id="defs1572" /> id="defs1572" />
<sodipodi:namedview <sodipodi:namedview
pagecolor="#ffffff" inkscape:document-rotation="0"
bordercolor="#666666" fit-margin-bottom="0"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview1570"
showgrid="false"
inkscape:pagecheckerboard="true"
inkscape:zoom="11.9198"
inkscape:cx="77.040608"
inkscape:cy="75.892047"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="layer3"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0" /> fit-margin-left="0"
fit-margin-top="0"
inkscape:current-layer="layer3"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:cy="21.411065"
inkscape:cx="78.237963"
inkscape:zoom="11.9198"
inkscape:pagecheckerboard="true"
showgrid="false"
id="namedview1570"
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" transform="translate(1.1973547,-7.5003284)"
id="layer4" sodipodi:insensitive="true"
inkscape:label="Base"
id="layer2"
inkscape:groupmode="layer">
<g
transform="matrix(3.7795276,0,0,3.7795276,-1.1973547,2.4649935)"
id="g4521">
<g
style="display:inline"
transform="translate(-81.705925,-154.45556)"
id="layer1"
inkscape:label="Layer 1" />
<g
transform="translate(-5.1279453,-51.149461)"
inkscape:label="Color" inkscape:label="Color"
sodipodi:insensitive="true"> id="layer3-6">
<path <path
style="fill:#005500;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="cccccccc"
d="m 55.95731,16.444706 11.99685,27.349452 15.604289,-10.067283 2.013456,-3.523549 -0.922834,-5.453112 4.949748,-9.060555 0.41947,-1.090622 -14.429772,3.020185 -19.631207,-1.174516" inkscape:connector-curvature="0"
id="path5859" id="path831-5"
inkscape:connector-curvature="0" /> 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.531825,-0.758534 10.854887,-0.961768 16.00729,-1.748141 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="zczczzcczscz"
inkscape:connector-curvature="0"
id="path857"
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"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g> </g>
<g <g
inkscape:groupmode="layer" transform="translate(-5.1279453,-51.149461)"
id="layer3" style="display:inline"
inkscape:label="Re-ink" inkscape:label="Re-ink"
transform="translate(197.74576,104.88136)"> id="layer2-9">
<path <path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccccccc"
d="m -162.51027,-90.450111 c 0,0 25.48557,3.882332 38.25568,3.104079 9.28979,-0.566151 27.34945,-5.6209 27.34945,-5.6209" inkscape:connector-curvature="0"
id="path831"
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
transform="translate(1.1973547,-7.5003284)"
inkscape:label="Color"
id="layer4"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="cccccc"
inkscape:connector-curvature="0"
id="path5859"
d="M 55.95731,16.444706 67.95416,43.794158 C 80.013679,37.232834 84.637888,32.21308 89.598819,15.689659 l 0.41947,-1.090622 -14.429772,3.020185 -19.631207,-1.174516"
style="fill:#005500;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(198.94311,97.381032)"
inkscape:label="Re-ink"
id="layer3"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="cac"
inkscape:connector-curvature="0"
id="path2137" id="path2137"
inkscape:connector-curvature="0" d="m -162.51027,-90.450111 c 0,0 25.48378,3.852316 38.25568,3.104079 9.08292,-0.532119 26.762192,-5.369218 26.762192,-5.369218"
sodipodi:nodetypes="cac" /> style="fill:none;stroke:#000000;stroke-width: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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:nodetypes="ccc"
d="m -106.63685,-90.617899 c 0,0 -7.16482,7.287267 -6.29205,13.255256 0.87277,5.967989 -0.23772,6.332477 -16.10765,15.855971 -2.73984,0.292841 -12.7519,-26.929982 -12.7519,-26.929982 l -0.75504,-3.439655" inkscape:connector-curvature="0"
id="path2139" id="path2139"
d="m -106.63685,-90.617899 c -7.98941,19.930049 -12.63986,23.196015 -22.3997,29.111227 -2.73984,0.292841 -12.7519,-26.929982 -12.7519,-26.929982"
style="fill:none;stroke:#000000;stroke-width:2;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="cczc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -129.87549,-77.698219 c 1.73092,-1.189006 3.51247,-1.655985 5.78868,-1.845669"
id="path2141"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -110.57987,-90.030641 0.33558,-2.013457"
id="path2143"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -131.38559,-64.610751 0.75505,8.808872 4.86585,-7.71825 -3.27186,2.013457 z"
id="path2145" id="path2145"
inkscape:connector-curvature="0" /> d="m -131.38559,-64.610751 0.75505,8.808872 4.86585,-7.71825 -3.27186,2.013457 z"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

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,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,12 +7,12 @@
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" width="29.456085mm"
height="29.633333mm" height="34.453861mm"
viewBox="0 0 28.045834 29.633333" viewBox="0 0 29.456086 34.453861"
version="1.1" version="1.1"
id="svg2007" id="svg2007"
inkscape:version="0.92.3 (2405546, 2018-03-11)" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="jeans.svg"> sodipodi:docname="jeans.svg">
<defs <defs
id="defs2001" /> id="defs2001" />
@ -25,11 +23,11 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="7.9195959" inkscape:zoom="2.8"
inkscape:cx="30.540413" inkscape:cx="55.33311"
inkscape:cy="71.8377" inkscape:cy="80.173641"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer2" inkscape:current-layer="layer1"
showgrid="false" showgrid="false"
inkscape:pagecheckerboard="true" inkscape:pagecheckerboard="true"
fit-margin-top="0" fit-margin-top="0"
@ -41,7 +39,8 @@
inkscape:window-height="1001" inkscape:window-height="1001"
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:document-rotation="0" />
<metadata <metadata
id="metadata2004"> id="metadata2004">
<rdf:RDF> <rdf:RDF>
@ -50,7 +49,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>
@ -58,45 +57,107 @@
inkscape:label="Layer 1" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-78.959229,-134.01666)" /> transform="translate(-113.83015,-134.49517)">
<g
transform="translate(34.982358,0.41212184)"
id="layer1-7"
inkscape:label="Layer 1">
<g
transform="translate(78.947411,133.03874)"
id="g865">
<g
style="display:inline"
transform="translate(-81.705925,-154.45556)"
id="layer1-9"
inkscape:label="Layer 1" />
<g
transform="translate(-5.1279453,-51.149461)"
inkscape:label="Color"
id="layer3-4">
<path
sodipodi:nodetypes="cccccccc"
inkscape:connector-curvature="0"
id="path831-5-5"
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"
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="zczczzcczscz"
inkscape:connector-curvature="0"
id="path857-4"
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"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(-5.1279453,-51.149461)"
style="display:inline"
inkscape:label="Re-ink"
id="layer2-2">
<path
sodipodi:nodetypes="ccccccc"
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
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" id="layer2"
inkscape:label="Re-ink"> inkscape:label="Re-ink"
transform="translate(-34.87092,-0.47851244)">
<g
id="layer3"
inkscape:label="Color"
transform="translate(34.866292,0.31963147)">
<path <path
style="fill:#0066ff;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="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"
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"
transform="scale(0.26458333)"
id="path2567-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssscsss" />
</g>
<g
id="layer2-8"
inkscape:label="Re-ink"
transform="translate(34.866292,0.31963147)">
<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"
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" 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"
id="path2567" id="path2567-5"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssscss" /> sodipodi:nodetypes="ssssscss" />
<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" 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 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" 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"
id="path2571" id="path2571-1"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" /> sodipodi:nodetypes="czc" />
<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" 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 19.695946,9.7169723 20.500613,2.7246489" d="M 19.695946,9.7169723 20.500613,2.7246489"
id="path2573" id="path2573-1"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path <path
style="fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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 9.6192654,3.7561084 Z" 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" id="path2569-1"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czccc" /> sodipodi:nodetypes="czccc" />
<path <path
style="fill:#d4d4d4;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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" 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" id="path2583-3"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="csssc" /> sodipodi:nodetypes="csssc" />
<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" 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" d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
id="path2579" id="path2579-3"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
</g> </g>
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/modern_dress_up_bg.png"
dest_files=[ "res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.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,34 +0,0 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/modern_dress_up_blurred_bg.png"
dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.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.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"
</g> 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 <g
inkscape:groupmode="layer" transform="matrix(3.7795276,0,0,3.7795276,-62.629028,-120.24359)"
id="layer2" id="layer2-2"
inkscape:label="Re-Ink" inkscape:label="Re-ink"
style="display:inline"> style="display:inline">
<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="cc"
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="path905"
id="path866" d="m 15.306227,52.99312 c -0.423415,4.241926 -0.479826,2.928287 -0.565156,5.536486"
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="cssc" />
<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" 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 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" 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="path874" id="path831"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" /> sodipodi:nodetypes="cac" />
<path <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" 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 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" 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
transform="translate(15.195254,-0.49878756)"
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"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="zcccccacsssz"
inkscape:connector-curvature="0"
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,42 +22,83 @@
<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"
id="layer1"
inkscape:groupmode="layer">
<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"
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="path831-5"
inkscape:connector-curvature="0"
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" inkscape:label="Re-ink"
transform="translate(-32.423729,-45.084747)"> id="layer5"
inkscape:groupmode="layer">
<g
transform="translate(-5.7047937,-15.75862)"
id="g6791">
<path <path
style="fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;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 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"
@ -88,4 +127,5 @@
inkscape:connector-curvature="0" /> 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

@ -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,12 +7,12 @@
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" width="24.636646mm"
height="30.427084mm" height="29.835096mm"
viewBox="0 0 22.489584 30.427084" viewBox="0 0 24.636646 29.835097"
version="1.1" version="1.1"
id="svg8" id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)" inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="retro_shirt.svg"> sodipodi:docname="retro_shirt.svg">
<defs <defs
id="defs2" /> id="defs2" />
@ -25,11 +23,11 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="3.959798" inkscape:zoom="11.2"
inkscape:cx="43.507239" inkscape:cx="57.951723"
inkscape:cy="60.44025" inkscape:cy="16.861876"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer2" inkscape:current-layer="layer1"
showgrid="false" showgrid="false"
inkscape:pagecheckerboard="true" inkscape:pagecheckerboard="true"
fit-margin-top="0" fit-margin-top="0"
@ -38,9 +36,10 @@
fit-margin-bottom="0" fit-margin-bottom="0"
inkscape:window-width="1920" inkscape:window-width="1920"
inkscape:window-height="1001" inkscape:window-height="1001"
inkscape:window-x="1911" inkscape:window-x="-9"
inkscape:window-y="-9" inkscape:window-y="-9"
inkscape:window-maximized="1" /> inkscape:window-maximized="1"
inkscape:document-rotation="0" />
<metadata <metadata
id="metadata5"> id="metadata5">
<rdf:RDF> <rdf:RDF>
@ -49,7 +48,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>
@ -57,73 +56,135 @@
inkscape:label="Layer 1" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-332.89496,-265.48813)" transform="translate(-329.97283,-265.24728)"
style="display:inline">
<g
style="display:inline" style="display:inline"
sodipodi:insensitive="true" /> 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 5.221022,-0.526781 8.822478,0.314042 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.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"
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="zzcsz"
inkscape:connector-curvature="0"
id="path849"
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"
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 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" />
<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
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer2" id="layer2"
inkscape:label="Re-ink" inkscape:label="Re-ink"
transform="translate(-108.95163,-14.177885)" transform="translate(-106.0295,-13.937037)"
style="display:inline"> style="display:inline">
<path <path
style="display:inline;opacity:1;fill:#0066ff;fill-opacity:1;stroke:#000000;stroke-width:0.84448189px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 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"
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.605818 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" 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"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="csssszzcsc" /> sodipodi:nodetypes="sssszzascs" />
<path <path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.47876146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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,34.484873 114.5288,21.056867" d="M 114.37102,33.426539 114.5288,19.998533"
id="path829-0" id="path829-0"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path <path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.47876146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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,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" 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"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" /> sodipodi:nodetypes="czc" />
<path <path
style="display:inline;fill:#ff2ad4;fill-opacity:1;stroke:#ffaeae;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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,25.262687 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"
id="path820" id="path820"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="display:inline;fill:none;stroke:#bcffa9;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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"
d="m 115.53314,26.541611 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"
id="path867" id="path867"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="display:inline;fill:none;stroke:#fff8ab;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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"
d="m 120.77831,26.207524 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"
id="path869" id="path869"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" /> sodipodi:nodetypes="cccc" />
<path <path
style="display:inline;fill:none;stroke:#e5abff;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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,29.11408 2.67269,-1.637026 -0.20045,4.142678 z" d="m 123.31737,28.055746 2.67269,-1.637026 -0.20045,4.142678 z"
id="path871" id="path871"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="display:inline;fill:none;stroke:#e5abff;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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.11691,27.142968 2.60588,-1.269531" d="m 123.11691,26.084634 2.60588,-1.269531"
id="path873" id="path873"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<path <path
style="display:inline;fill:#ff2ad4;fill-opacity:1;stroke:#ffaeae;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 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 115.15893,32.496665 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"
id="path820-4" id="path820-4"
inkscape:connector-curvature="0" /> inkscape:connector-curvature="0" />
<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" 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,34.484873 114.5288,21.056867" d="M 114.37102,33.426539 114.5288,19.998533"
id="path829" id="path829"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<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" 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,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" 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" id="path833"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="czc" /> sodipodi:nodetypes="czc" />

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Some files were not shown because too many files have changed in this diff Show more