Merge remote-tracking branch 'remotes/origin/main' into feat_game_over

This commit is contained in:
Mikhail Aristov 2024-01-27 21:18:42 +01:00
commit 2b07de2666
22 changed files with 1599 additions and 46 deletions

View File

@ -18,6 +18,7 @@ config/icon="res://icon.svg"
[autoload] [autoload]
UserSettings="*res://settings/user_settings.gd" UserSettings="*res://settings/user_settings.gd"
Signals="*res://scenes/signals.gd"
[display] [display]

View File

@ -2,6 +2,7 @@ extends Label
@onready var crowd_controller: Crowd = get_node("/root/IngameScene/Crowd") @onready var crowd_controller: Crowd = get_node("/root/IngameScene/Crowd")
# Called every frame. 'delta' is the elapsed time since the previous frame. # Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(_delta): func _process(_delta):
text = str(int(crowd_controller.overall_mood)) text = str(int(crowd_controller.overall_mood))

View File

@ -5,12 +5,16 @@ extends Node2D
@export var boundary: Boundary @export var boundary: Boundary
@export var tim_sprite: Sprite2D @export var tim_sprite: Sprite2D
@export var transmitter_area: Area2D @export var transmitter_area: Area2D
@export var stamina: int = 100 @export var stamina: int = 100
var default_texture: Texture2D = load("res://sprites/tim_side.png")
var ducking_texture: Texture2D = load("res://sprites/tim_ducking.svg")
# Called when the node enters the scene tree for the first time. # Called when the node enters the scene tree for the first time.
func _ready(): func _ready():
pass # Replace with function body. Signals.hit_tim.connect(ouch)
# Called every frame. 'delta' is the elapsed time since the previous frame. # Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta): func _process(delta):
@ -28,6 +32,7 @@ func _process(delta):
func _on_joke_button_button_pressed(joke: Joke): func _on_joke_button_button_pressed(joke: Joke):
$AnimationPlayer.play("talking")
stamina -= joke.required_stamina stamina -= joke.required_stamina
for body in transmitter_area.get_overlapping_bodies(): for body in transmitter_area.get_overlapping_bodies():
@ -37,10 +42,10 @@ func _on_joke_button_button_pressed(joke: Joke):
person.on_joke(joke) person.on_joke(joke)
if stamina <= 0: if stamina <= 0:
_on_stamina_empty() _on_stamina_empty()
func _on_stamina_empty(): func _on_stamina_empty():
get_node("../DisplayGUI").visible = false get_node("../DisplayGUI").visible = false
@ -55,3 +60,10 @@ func _on_stamina_empty():
score_overlay.get_node("VBoxContainer3/FinalScore").text = str(int(get_node("/root/IngameScene/Crowd").overall_mood)) score_overlay.get_node("VBoxContainer3/FinalScore").text = str(int(get_node("/root/IngameScene/Crowd").overall_mood))
score_overlay.grab_button_focus() score_overlay.grab_button_focus()
score_overlay.visible = true score_overlay.visible = true
pass
func ouch():
$Sprite2D.texture = ducking_texture
await get_tree().create_timer(1).timeout
$Sprite2D.texture = default_texture

View File

@ -1,6 +1,7 @@
class_name AudienceProfile class_name AudienceProfile
extends Node2D extends Node2D
class ProfileData: class ProfileData:
var happy_threshold: float var happy_threshold: float
var angry_threshold: float var angry_threshold: float
@ -9,7 +10,14 @@ class ProfileData:
var lashout_decay: float var lashout_decay: float
var joke_mood_mapping: Dictionary var joke_mood_mapping: Dictionary
func _init(happy_threshold, angry_threshold, lashout_threshold, happiness_decay, lashout_decay, joke_mood_mapping): func _init(
happy_threshold,
angry_threshold,
lashout_threshold,
happiness_decay,
lashout_decay,
joke_mood_mapping
):
self.happy_threshold = happy_threshold self.happy_threshold = happy_threshold
self.angry_threshold = angry_threshold self.angry_threshold = angry_threshold
self.lashout_threshold = lashout_threshold self.lashout_threshold = lashout_threshold
@ -17,6 +25,7 @@ class ProfileData:
self.lashout_decay = lashout_decay self.lashout_decay = lashout_decay
self.joke_mood_mapping = joke_mood_mapping self.joke_mood_mapping = joke_mood_mapping
var happy_threshold: float var happy_threshold: float
var angry_threshold: float var angry_threshold: float
var lashout_threshold: float var lashout_threshold: float
@ -27,6 +36,7 @@ var lashout_decay : float
# Maps JokeType (as int) to mood change (as float) # Maps JokeType (as int) to mood change (as float)
var joke_mood_mapping: Dictionary var joke_mood_mapping: Dictionary
static func get_profile_data(index) -> ProfileData: static func get_profile_data(index) -> ProfileData:
var profiles = [ var profiles = [
ProfileData.new(3, -3, -10, 0.1, 0.1, {0: 1, 1: -0.25, 2: 0}), ProfileData.new(3, -3, -10, 0.1, 0.1, {0: 1, 1: -0.25, 2: 0}),
@ -35,14 +45,17 @@ static func get_profile_data(index) -> ProfileData:
] ]
return profiles[index] return profiles[index]
# Called when the node enters the scene tree for the first time. # Called when the node enters the scene tree for the first time.
func _ready(): func _ready():
pass # Replace with function body. pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame. # Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(_delta): func _process(_delta):
pass pass
func load_data(data: ProfileData): func load_data(data: ProfileData):
happy_threshold = data.happy_threshold happy_threshold = data.happy_threshold
angry_threshold = data.angry_threshold angry_threshold = data.angry_threshold

View File

@ -1,8 +1,8 @@
class_name Crowd class_name Crowd
extends Node2D extends Node2D
@export_range(1, 16, 1) @export_range(1, 16, 1) var max_persons = 16
var max_persons = 16
var audience : Array[AudienceMember] = [] var audience : Array[AudienceMember] = []
var overall_mood : float = 0 var overall_mood : float = 0

View File

@ -3,6 +3,7 @@ extends Node2D
@onready var fade_overlay = %FadeOverlay @onready var fade_overlay = %FadeOverlay
@onready var pause_overlay = %PauseOverlay @onready var pause_overlay = %PauseOverlay
func _ready() -> void: func _ready() -> void:
fade_overlay.visible = true fade_overlay.visible = true
@ -11,6 +12,7 @@ func _ready() -> void:
pause_overlay.game_exited.connect(_save_game) pause_overlay.game_exited.connect(_save_game)
func _input(event) -> void: func _input(event) -> void:
if event.is_action_pressed("pause") and not pause_overlay.visible: if event.is_action_pressed("pause") and not pause_overlay.visible:
get_viewport().set_input_as_handled() get_viewport().set_input_as_handled()
@ -18,5 +20,6 @@ func _input(event) -> void:
pause_overlay.grab_button_focus() pause_overlay.grab_button_focus()
pause_overlay.visible = true pause_overlay.visible = true
func _save_game() -> void: func _save_game() -> void:
SaveGame.save_game(get_tree()) SaveGame.save_game(get_tree())

View File

@ -1,5 +1,7 @@
extends Sprite2D extends Sprite2D
signal hit_tim
@export var bottle_speed: float = 120; @export var bottle_speed: float = 120;
var tim_global_position: Vector2 var tim_global_position: Vector2
@ -29,4 +31,5 @@ func _on_growth_timer_timeout():
func remove_bottle(): func remove_bottle():
if is_hidding: if is_hidding:
print("Ouch") print("Ouch")
Signals.hit_tim.emit()
queue_free() queue_free()

3
godot/scenes/signals.gd Normal file
View File

@ -0,0 +1,3 @@
extends Node
signal hit_tim

View File

@ -1,11 +1,13 @@
[gd_scene load_steps=12 format=3 uid="uid://cicyfp5xjvvu4"] [gd_scene load_steps=17 format=3 uid="uid://cicyfp5xjvvu4"]
[ext_resource type="Texture2D" uid="uid://bg85if5rrrdmm" path="res://sprites/room/buehne.svg" id="1_32lst"] [ext_resource type="Texture2D" uid="uid://bg85if5rrrdmm" path="res://sprites/room/buehne.svg" id="1_32lst"]
[ext_resource type="Script" path="res://scenes/Tim.gd" id="1_g3k2b"] [ext_resource type="Script" path="res://scenes/Tim.gd" id="1_g3k2b"]
[ext_resource type="Texture2D" uid="uid://kq63ictuirhc" path="res://sprites/tim_side.png" id="1_saxit"] [ext_resource type="Texture2D" uid="uid://kq63ictuirhc" path="res://sprites/tim_side.png" id="1_saxit"]
[ext_resource type="Script" path="res://scenes/Boundary.gd" id="2_8p6ir"] [ext_resource type="Script" path="res://scenes/Boundary.gd" id="2_8p6ir"]
[ext_resource type="PackedScene" uid="uid://r1i7ln2hpwq5" path="res://scenes/joke_button.tscn" id="3_0t41i"] [ext_resource type="PackedScene" uid="uid://r1i7ln2hpwq5" path="res://scenes/joke_button.tscn" id="3_0t41i"]
[ext_resource type="Texture2D" uid="uid://b8tb4o75kjffn" path="res://sprites/tim_talk.svg" id="3_e1fvx"]
[ext_resource type="Script" path="res://scenes/DisplayStamina.gd" id="6_88orn"] [ext_resource type="Script" path="res://scenes/DisplayStamina.gd" id="6_88orn"]
[ext_resource type="Texture2D" uid="uid://d2264dy2o4q6d" path="res://sprites/tim_side.svg" id="6_qpa7m"]
[ext_resource type="FontFile" uid="uid://le2vdo2626vw" path="res://fonts/Montserrat-Medium.ttf" id="6_pb3a7"] [ext_resource type="FontFile" uid="uid://le2vdo2626vw" path="res://fonts/Montserrat-Medium.ttf" id="6_pb3a7"]
[ext_resource type="Script" path="res://scenes/DisplayMood.gd" id="7_5m0td"] [ext_resource type="Script" path="res://scenes/DisplayMood.gd" id="7_5m0td"]
@ -15,6 +17,59 @@ radius = 23.0217
[sub_resource type="RectangleShape2D" id="RectangleShape2D_wmfel"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_wmfel"]
size = Vector2(250, 10000) size = Vector2(250, 10000)
[sub_resource type="Animation" id="Animation_n0bwh"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath("Sprite2D:texture")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 1,
"values": [ExtResource("3_e1fvx")]
}
[sub_resource type="Animation" id="Animation_5tnw3"]
resource_name = "idle"
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath("Sprite2D:texture")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 1),
"transitions": PackedFloat32Array(1, 1),
"update": 1,
"values": [ExtResource("6_qpa7m"), ExtResource("6_qpa7m")]
}
[sub_resource type="Animation" id="Animation_kkrfv"]
resource_name = "talking"
length = 4.0
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath("Sprite2D:texture")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3, 3.25, 3.5, 3.75, 3.95),
"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1),
"update": 1,
"values": [ExtResource("1_saxit"), ExtResource("3_e1fvx"), ExtResource("6_qpa7m"), ExtResource("3_e1fvx"), ExtResource("6_qpa7m"), ExtResource("3_e1fvx"), ExtResource("6_qpa7m"), ExtResource("3_e1fvx"), ExtResource("1_saxit"), ExtResource("3_e1fvx"), ExtResource("6_qpa7m"), ExtResource("3_e1fvx"), ExtResource("6_qpa7m"), ExtResource("3_e1fvx"), ExtResource("6_qpa7m"), ExtResource("3_e1fvx"), ExtResource("1_saxit")]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_xvfym"]
_data = {
"RESET": SubResource("Animation_n0bwh"),
"idle": SubResource("Animation_5tnw3"),
"talking": SubResource("Animation_kkrfv")
}
[sub_resource type="LabelSettings" id="LabelSettings_aq472"] [sub_resource type="LabelSettings" id="LabelSettings_aq472"]
font = ExtResource("6_pb3a7") font = ExtResource("6_pb3a7")
font_size = 32 font_size = 32
@ -46,7 +101,7 @@ shape = SubResource("CircleShape2D_jfw8v")
z_index = 110 z_index = 110
position = Vector2(-12, -142) position = Vector2(-12, -142)
scale = Vector2(0.4, 0.4) scale = Vector2(0.4, 0.4)
texture = ExtResource("1_saxit") texture = ExtResource("3_e1fvx")
offset = Vector2(0, 50) offset = Vector2(0, 50)
[node name="Joke Buttons" type="Node2D" parent="Tim"] [node name="Joke Buttons" type="Node2D" parent="Tim"]
@ -71,6 +126,11 @@ action = "joke_button_3"
[node name="CollisionShape2D" type="CollisionShape2D" parent="Tim/Joke Transmitter/Area2D"] [node name="CollisionShape2D" type="CollisionShape2D" parent="Tim/Joke Transmitter/Area2D"]
shape = SubResource("RectangleShape2D_wmfel") shape = SubResource("RectangleShape2D_wmfel")
[node name="AnimationPlayer" type="AnimationPlayer" parent="Tim"]
libraries = {
"": SubResource("AnimationLibrary_xvfym")
}
[node name="Boundary" type="Node2D" parent="."] [node name="Boundary" type="Node2D" parent="."]
script = ExtResource("2_8p6ir") script = ExtResource("2_8p6ir")

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109528mm"
height="130.68253mm"
viewBox="0 0 58.109528 130.68253"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(337.15296,-427.95204)"><g
id="g33593"
transform="translate(-451.75858,123.03731)"
inkscape:export-filename="002_tim_cycle.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m 136.86649,377.12667 c 0,0 -4.32522,13.16756 -4.46304,18.1001 -0.13783,4.93254 -1.09449,4.66692 -0.10271,8.88201 0.99179,4.2151 4.44295,7.82905 8.5417,11.79508 4.09876,3.96603 8.66932,8.58059 8.66932,8.58059 l 4.24,-4.59947 c 0,0 -11.04986,-13.29948 -11.32775,-16.2882 -0.43166,-4.64246 0.86731,-9.63781 2.15668,-13.45119 0.75041,-2.21934 3.86462,-1.30233 4.93106,-1.36544 5.05156,-0.29885 3.57229,-1.69319 4.71099,0.24796 1.1387,1.94114 0.25948,6.03253 0,10.1658 -0.25948,4.13327 -0.0532,6.47075 0.12398,11.90144 0.17716,5.43068 3.09932,17.97612 3.09932,17.97612 l 5.20688,-0.49589 c 0,0 -0.91031,-16.36549 0.12398,-23.55493 1.03429,-7.18944 1.85959,-12.27334 2.60343,-15.49665 0.74384,-3.22331 1.66259,-5.68536 1.48769,-8.67813 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path33507"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="tim_side.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 146.98688,423.05788 c 0,0 -3.04679,4.04246 -3.55527,6.31254 -0.50847,2.27008 0.88189,5.64716 1.41586,6.21107 0.53398,0.5639 12.91603,-14.16041 12.91603,-14.16041 0,0 -2.29318,-2.79565 -3.6047,-3.40546 -1.31151,-0.60981 -2.94469,-0.19444 -2.94469,-0.19444 z"
id="path33509"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 156.82211,427.97334 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path33511"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 138.10622,341.42237 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path33513"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 164.09549,338.73749 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path33515"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 135.8194,347.86898 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path33517"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m 128.31233,337.82714 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path33519"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.26228,343.65389 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path33521"
sodipodi:nodetypes="czzzzccc" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 142.0922,311.87466 c -2.09218,2.34414 -1.88986,2.60889 -2.66846,5.44177 -0.27343,0.99484 -0.07,3.884 0.18749,5.28494 0.48568,2.64266 0.9809,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,2.92828 -0.46132,4.15967 -0.0275,1.27987 1.39127,1.65821 2.77242,1.85919 2.63163,0.38294 11.52649,-0.11872 13.41104,-2.32397 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path33523"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 140.33591,321.09698 c -0.34028,0.33298 -1.90226,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94223,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31522,-0.24795 4.31522,-0.24795 0,0 -1.14922,-6.89733 -1.48951,-6.56435 z"
id="path33525"
sodipodi:nodetypes="zzzcz" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse33527"
cx="134.01511"
cy="337.45526"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 150.75148,314.14825 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81852,0.12397 -6.81852,0.12397 0,0 0.53496,-5.02528 2.39803,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path33529"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 153.41691,322.14453 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path33531"
sodipodi:nodetypes="czzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 116.40709,342.88875 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path33533"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.529167"
d="m 140.21376,330.41974 c 0,0 2.31333,0.23285 3.09933,0.15495 0.786,-0.0779 1.27613,-0.35192 1.92159,-0.68185 0.64546,-0.32997 1.67364,-1.42569 1.67364,-1.42569"
id="path33535"
sodipodi:nodetypes="czzc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 143.74752,322.59778 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path33537"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse33539"
cx="144.70779"
cy="323.05884"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 142.01335,319.49494 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path33541"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 142.53294,338.0087 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path33543"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 163.9139,338.05486 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path33545" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 147.43337,334.85518 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path33547"
sodipodi:nodetypes="cczzzccc" /></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109528mm"
height="130.68256mm"
viewBox="0 0 58.109528 130.68256"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(332.94517,-583.99101)"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m -310.6843,656.20294 c 0,0 -4.32522,13.16756 -4.46304,18.1001 -0.13783,4.93254 -1.09449,4.66692 -0.10271,8.88201 0.99179,4.2151 4.44295,7.82905 8.5417,11.79508 4.09876,3.96603 8.66932,8.58059 8.66932,8.58059 l 4.24,-4.59947 c 0,0 -11.04986,-13.29948 -11.32775,-16.2882 -0.43166,-4.64246 0.86731,-9.63781 2.15668,-13.45119 0.75041,-2.21934 3.86462,-1.30233 4.93106,-1.36544 5.05156,-0.29885 3.57229,-1.69319 4.71099,0.24796 1.1387,1.94114 0.25948,6.03253 0,10.1658 -0.25948,4.13327 -0.0532,6.47075 0.12398,11.90144 0.17716,5.43068 3.09932,17.97612 3.09932,17.97612 l 5.20688,-0.49589 c 0,0 -0.91031,-16.36549 0.12398,-23.55493 1.03429,-7.18944 1.85959,-12.27334 2.60343,-15.49665 0.74384,-3.22331 1.66259,-5.68536 1.48769,-8.67813 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path93521"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="2024\tough_crowd\godot\sprites\01_tim_cycle_talk.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -300.56391,702.13415 c 0,0 -3.04679,4.04246 -3.55527,6.31254 -0.50847,2.27008 0.88189,5.64716 1.41586,6.21107 0.53398,0.5639 12.91603,-14.16041 12.91603,-14.16041 0,0 -2.29318,-2.79565 -3.6047,-3.40546 -1.31151,-0.60981 -2.94469,-0.19444 -2.94469,-0.19444 z"
id="path93523"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -290.72868,707.04961 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path93525"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -309.44457,620.49864 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path93527"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -283.4553,617.81376 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path93529"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -311.73139,626.94525 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path93531"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m -319.23846,616.90341 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path93533"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -328.28851,622.73016 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path93535"
sodipodi:nodetypes="czzzzccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -331.1437,621.96502 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path93547"
sodipodi:nodetypes="zzzzzz" /><g
id="g93618"
transform="translate(-424.98766,252.29804)"><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 119.52907,338.65289 c -2.09219,2.34414 -1.88986,2.60889 -2.66847,5.44177 -0.27342,0.99484 -0.07,3.884 0.18749,5.28494 0.48569,2.64266 0.98091,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,3.45745 -0.46132,4.68884 -0.0275,1.27987 1.39127,1.65821 2.77243,1.85919 2.63163,0.38294 11.52649,-0.64789 13.41104,-2.85314 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path93598"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 117.77278,347.87521 c -0.34028,0.33298 -1.90227,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94224,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31521,-0.24795 4.31521,-0.24795 0,0 -1.14922,-6.89733 -1.4895,-6.56435 z"
id="path93600"
sodipodi:nodetypes="zzzcz" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 128.18835,340.92648 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81853,0.12397 -6.81853,0.12397 0,0 0.53496,-5.02528 2.39804,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path93602"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 130.85378,348.92276 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path93604"
sodipodi:nodetypes="czzzzc" /><path
id="path93606"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 123.60154,355.49345 c -2.29956,0.26822 -4.18068,0.48784 -5.92,0.11578 0.0201,0.26426 -0.004,0.39496 -0.0102,0.55402 -0.0333,0.81319 -0.16624,1.33171 -0.29007,2.39717 0.57167,0.0915 2.01159,0.29169 3.10592,0.11071 1.53113,-0.25322 2.05096,-0.6144 2.5129,-1.47391 0.40273,-0.6787 0.53786,-0.94941 0.60145,-1.70377 z"
sodipodi:nodetypes="ccscscc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 121.18439,349.37601 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path93608"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse93610"
cx="122.14465"
cy="349.83707"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.45022,346.27317 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path93612"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 124.87024,361.63341 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path93614"
sodipodi:nodetypes="cczzzccc" /><path
id="path93616"
style="fill:#d40000;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-dasharray:none"
d="m 123.10153,357.02317 c -1.04218,0.0128 -3.22631,0.0704 -4.02198,0.32659 -1.0609,0.34156 -1.54926,0.96067 -1.54926,0.96067 l -0.12247,0.25425 c 0.58752,0.0931 2.00051,0.28488 3.0794,0.10645 1.53113,-0.25322 2.05108,-0.6143 2.51302,-1.47381 0.0364,-0.0614 0.0696,-0.11878 0.10181,-0.17415 -1.9e-4,0 -3.3e-4,0 -5.2e-4,0 z" /></g><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse93541"
cx="-313.53568"
cy="616.53156"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -305.01785,617.08497 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path93557"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -283.63689,617.13113 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path93559" /></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,140 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109512mm"
height="131.92838mm"
viewBox="0 0 58.109512 131.92838"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(245.1648,-426.7062)"><g
id="g33637"
transform="translate(-253.64931,121.29555)"
inkscape:export-filename="003_tim_cycle.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"><g
id="g34480"
transform="translate(-106.12112,0.49589307)"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m 136.86649,377.12667 c 0,0 -0.85397,12.79564 -0.99179,17.72818 -0.13783,4.93254 0.76511,9.12995 2.00483,12.10531 1.23973,2.97536 6.5505,7.95303 10.15335,11.42316 3.60286,3.47014 9.78508,7.46483 9.78508,7.46483 l 4.24,-4.59947 c 0,0 -14.14918,-14.16729 -14.42707,-17.15601 -0.43166,-4.64246 -0.37242,-11.37344 0.29708,-13.32722 0.75945,-2.21626 0.2746,-1.73608 0.71597,-1.86133 1.65047,-0.46835 2.70447,0.29039 3.09933,1.11578 0.39487,0.82539 -1.97203,4.25588 -4.46303,8.55415 -2.49101,4.29827 -5.1361,8.33842 -7.19045,12.64526 -2.05436,4.31493 -5.33086,15.86858 -5.33086,15.86858 l 7.81032,1.11577 c 0,0 5.5765,-13.83239 11.03363,-21.81931 5.45714,-7.98691 11.65348,-15.12472 12.39732,-18.34803 0.74384,-3.22331 1.04272,-4.19768 0.86782,-7.19045 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path33595"
sodipodi:nodetypes="czzzccssszzccczzzcc"
inkscape:export-filename="tim_side.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 155.73811,424.33256 c 0,0 -1.49228,4.8371 -1.19934,7.14491 0.29302,2.30781 2.7479,5.01171 3.44168,5.36068 0.6938,0.34896 7.33729,-17.70608 7.33729,-17.70608 0,0 -3.10653,-1.85034 -4.54722,-1.97833 -1.44067,-0.128 -2.83561,0.81749 -2.83561,0.81749 z"
id="path33597"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 136.29409,426.73361 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path33599"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 138.10622,341.42237 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path33601"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 164.09549,338.73749 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path33603"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 135.8194,347.86898 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path33605"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m 128.31233,337.82714 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path33607"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.26228,343.65389 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path33609"
sodipodi:nodetypes="czzzzccc" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 142.0922,311.87466 c -2.09218,2.34414 -1.88986,2.60889 -2.66846,5.44177 -0.27343,0.99484 -0.07,3.884 0.18749,5.28494 0.48568,2.64266 0.9809,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,2.92828 -0.46132,4.15967 -0.0275,1.27987 1.39127,1.65821 2.77242,1.85919 2.63163,0.38294 11.52649,-0.11872 13.41104,-2.32397 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path33611"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 140.33591,321.09698 c -0.34028,0.33298 -1.90226,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94223,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31522,-0.24795 4.31522,-0.24795 0,0 -1.14922,-6.89733 -1.48951,-6.56435 z"
id="path33613"
sodipodi:nodetypes="zzzcz" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse33615"
cx="134.01511"
cy="337.45526"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 150.75148,314.14825 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81852,0.12397 -6.81852,0.12397 0,0 0.53496,-5.02528 2.39803,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path33617"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 153.41691,322.14453 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path33619"
sodipodi:nodetypes="czzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 116.40709,342.88875 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path33621"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.529167"
d="m 140.21376,330.41974 c 0,0 2.31333,0.23285 3.09933,0.15495 0.786,-0.0779 1.27613,-0.35192 1.92159,-0.68185 0.64546,-0.32997 1.67364,-1.42569 1.67364,-1.42569"
id="path33623"
sodipodi:nodetypes="czzc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 143.74752,322.59778 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path33625"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse33627"
cx="144.70779"
cy="323.05884"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 142.01335,319.49494 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path33629"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 142.53294,338.0087 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path33631"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 163.9139,338.05486 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path33633" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 147.43337,334.85518 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path33635"
sodipodi:nodetypes="cczzzccc" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109512mm"
height="131.92841mm"
viewBox="0 0 58.109512 131.92841"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(242.00896,-577.4854)"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m -219.7481,649.69733 c 0,0 -0.85397,12.79564 -0.99179,17.72818 -0.13783,4.93254 0.76511,9.12995 2.00483,12.10531 1.23973,2.97536 6.5505,7.95303 10.15335,11.42316 3.60286,3.47014 9.78508,7.46483 9.78508,7.46483 l 4.24,-4.59947 c 0,0 -14.14918,-14.16729 -14.42707,-17.15601 -0.43166,-4.64246 -0.37242,-11.37344 0.29708,-13.32722 0.75945,-2.21626 0.2746,-1.73608 0.71597,-1.86133 1.65047,-0.46835 2.70447,0.29039 3.09933,1.11578 0.39487,0.82539 -1.97203,4.25588 -4.46303,8.55415 -2.49101,4.29827 -5.1361,8.33842 -7.19045,12.64526 -2.05436,4.31493 -5.33086,15.86858 -5.33086,15.86858 l 7.81032,1.11577 c 0,0 5.5765,-13.83239 11.03363,-21.81931 5.45714,-7.98691 11.65348,-15.12472 12.39732,-18.34803 0.74384,-3.22331 1.04272,-4.19768 0.86782,-7.19045 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path96061"
sodipodi:nodetypes="czzzccssszzccczzzcc"
inkscape:export-filename="2024\tough_crowd\godot\sprites\02_tim_cycle_talk.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -200.87648,696.90322 c 0,0 -1.49228,4.8371 -1.19934,7.14491 0.29302,2.30781 2.7479,5.01171 3.44168,5.36068 0.6938,0.34896 7.33729,-17.70608 7.33729,-17.70608 0,0 -3.10653,-1.85034 -4.54722,-1.97833 -1.44067,-0.128 -2.83561,0.81749 -2.83561,0.81749 z"
id="path96063"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -220.3205,699.30427 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path96065"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -218.50837,613.99303 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path96067"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -192.5191,611.30815 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path96069"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -220.79519,620.43964 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path96071"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m -228.30226,610.3978 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path96073"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -237.35231,616.22455 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path96075"
sodipodi:nodetypes="czzzzccc" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse96081"
cx="-222.59949"
cy="610.02594"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -240.2075,615.45941 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path96087"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -214.08165,610.57936 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path96097"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -192.70069,610.62552 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path96099" /><g
id="g96181"
transform="translate(-334.05146,245.79243)"><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 119.52907,338.65289 c -2.09219,2.34414 -1.88986,2.60889 -2.66847,5.44177 -0.27342,0.99484 -0.07,3.884 0.18749,5.28494 0.48569,2.64266 0.98091,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,3.45745 -0.46132,4.68884 -0.0275,1.27987 1.39127,1.65821 2.77243,1.85919 2.63163,0.38294 11.52649,-0.64789 13.41104,-2.85314 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path96161"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 117.77278,347.87521 c -0.34028,0.33298 -1.90227,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94224,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31521,-0.24795 4.31521,-0.24795 0,0 -1.14922,-6.89733 -1.4895,-6.56435 z"
id="path96163"
sodipodi:nodetypes="zzzcz" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 128.18835,340.92648 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81853,0.12397 -6.81853,0.12397 0,0 0.53496,-5.02528 2.39804,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path96165"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 130.85378,348.92276 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path96167"
sodipodi:nodetypes="czzzzc" /><path
id="path96169"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 123.60154,355.49345 c -2.29956,0.26822 -4.18068,0.48784 -5.92,0.11578 0.0201,0.26426 -0.004,0.39496 -0.0102,0.55402 -0.0333,0.81319 -0.16624,1.33171 -0.29007,2.39717 0.57167,0.0915 2.01159,0.29169 3.10592,0.11071 1.53113,-0.25322 2.05096,-0.6144 2.5129,-1.47391 0.40273,-0.6787 0.53786,-0.94941 0.60145,-1.70377 z"
sodipodi:nodetypes="ccscscc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 121.18439,349.37601 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path96171"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse96173"
cx="122.14465"
cy="349.83707"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.45022,346.27317 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path96175"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 124.87024,361.63341 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path96177"
sodipodi:nodetypes="cczzzccc" /><path
id="path96179"
style="fill:#d40000;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-dasharray:none"
d="m 123.10153,357.02317 c -1.04218,0.0128 -3.22631,0.0704 -4.02198,0.32659 -1.0609,0.34156 -1.54926,0.96067 -1.54926,0.96067 l -0.12247,0.25425 c 0.58752,0.0931 2.00051,0.28488 3.0794,0.10645 1.53113,-0.25322 2.05108,-0.6143 2.51302,-1.47381 0.0364,-0.0614 0.0696,-0.11878 0.10181,-0.17415 -1.9e-4,0 -3.3e-4,0 -5.2e-4,0 z" /></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,140 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109512mm"
height="128.69098mm"
viewBox="0 0 58.109512 128.69098"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(157.49797,-429.94359)"><g
id="g34613"
transform="translate(28.761798,127.88024)"
inkscape:export-filename="004_tim_cycle.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -150.02124,418.36561 c 0,0 -3.70706,3.44704 -4.60489,5.59314 -0.89774,2.14613 -0.11973,5.71435 0.30734,6.36298 0.42709,0.64864 15.19431,-11.6822 15.19431,-11.6822 0,0 -1.76867,-3.15374 -2.95328,-3.9836 -1.18458,-0.82987 -2.86524,-0.70665 -2.86524,-0.70665 z"
id="path34484"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m -163.36757,375.32723 c 0,0 -1.90592,12.182 -2.04374,17.11454 -0.13783,4.93254 -0.11151,7.90268 1.12821,10.87804 1.23973,2.97536 2.07972,4.44654 5.68257,7.91667 3.60286,3.47014 9.78508,7.46483 9.78508,7.46483 l 4.24,-4.59947 c 0,0 -10.3517,-10.73591 -10.30694,-13.73718 0.0576,-3.86176 1.9068,-9.44487 2.5763,-11.39865 0.75945,-2.21626 0.2746,-1.73608 0.71597,-1.86133 1.65047,-0.46835 2.70447,0.29039 3.09933,1.11578 0.39487,0.82539 -0.48177,2.67796 -1.65783,7.76519 -1.17607,5.08723 -1.30001,8.2013 -1.31708,12.38227 -0.0171,4.18097 2.82174,15.86858 2.82174,15.86858 l 7.81032,1.11577 c 0,0 -3.36506,-12.95577 -1.41442,-21.11801 1.95063,-8.16225 7.27036,-14.77407 8.0142,-17.99738 0.74384,-3.22331 1.04272,-4.19768 0.86782,-7.19045 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path34482"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="tim_side.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -147.1088,423.88222 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path34486"
sodipodi:nodetypes="czzczc" /><g
id="g34589"
transform="translate(-17.462505)"><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -145.29667,338.57098 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path34488"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -119.3074,335.8861 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path34490"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -147.58349,345.01759 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path34492"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m -155.09056,334.97575 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path34494"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -164.14061,340.8025 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path34496"
sodipodi:nodetypes="czzzzccc" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m -141.31069,309.02327 c -2.09218,2.34414 -1.88986,2.60889 -2.66846,5.44177 -0.27343,0.99484 -0.07,3.884 0.18749,5.28494 0.48568,2.64266 0.9809,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,2.92828 -0.46132,4.15967 -0.0275,1.27987 1.39127,1.65821 2.77242,1.85919 2.63163,0.38294 11.52649,-0.11872 13.41104,-2.32397 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path34498"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m -143.06698,318.24559 c -0.34028,0.33298 -1.90226,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94223,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31522,-0.24795 4.31522,-0.24795 0,0 -1.14922,-6.89733 -1.48951,-6.56435 z"
id="path34500"
sodipodi:nodetypes="zzzcz" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse34502"
cx="-149.38779"
cy="334.60388"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m -132.65141,311.29686 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81852,0.12397 -6.81852,0.12397 0,0 0.53496,-5.02528 2.39803,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path34504"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -129.98598,319.29314 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path34506"
sodipodi:nodetypes="czzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -166.9958,340.03736 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path34508"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.529167"
d="m -143.18913,327.56835 c 0,0 2.31333,0.23285 3.09933,0.15495 0.786,-0.0779 1.27613,-0.35192 1.92159,-0.68185 0.64546,-0.32997 1.67364,-1.42569 1.67364,-1.42569"
id="path34510"
sodipodi:nodetypes="czzc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m -139.65537,319.74639 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path34512"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse34514"
cx="-138.6951"
cy="320.20746"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -141.38954,316.64355 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path34516"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -140.86995,335.15731 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path34518"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -119.48899,335.20347 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path34520" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -135.96952,332.00379 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path34522"
sodipodi:nodetypes="cczzzccc" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109528mm"
height="128.69098mm"
viewBox="0 0 58.109528 128.69098"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(153.64083,-573.35918)"><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -117.4023,689.66144 c 0,0 -3.70706,3.44704 -4.60489,5.59314 -0.89774,2.14613 -0.11973,5.71435 0.30734,6.36298 0.42709,0.64864 15.19431,-11.6822 15.19431,-11.6822 0,0 -1.76867,-3.15374 -2.95328,-3.9836 -1.18458,-0.82987 -2.86524,-0.70665 -2.86524,-0.70665 z"
id="path93424"
sodipodi:nodetypes="czzczcc"
inkscape:export-filename="2024\tough_crowd\godot\sprites\03_tim_cycle_talk.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m -130.74863,646.62306 c 0,0 -1.90592,12.182 -2.04374,17.11454 -0.13783,4.93254 -0.11151,7.90268 1.12821,10.87804 1.23973,2.97536 2.07972,4.44654 5.68257,7.91667 3.60286,3.47014 9.78508,7.46483 9.78508,7.46483 l 4.24,-4.59947 c 0,0 -10.3517,-10.73591 -10.30694,-13.73718 0.0576,-3.86176 1.9068,-9.44487 2.5763,-11.39865 0.75945,-2.21626 0.2746,-1.73608 0.71597,-1.86133 1.65047,-0.46835 2.70447,0.29039 3.09933,1.11578 0.39487,0.82539 -0.48177,2.67796 -1.65783,7.76519 -1.17607,5.08723 -1.30001,8.2013 -1.31708,12.38227 -0.0171,4.18097 2.82174,15.86858 2.82174,15.86858 l 7.81032,1.11577 c 0,0 -3.36506,-12.95577 -1.41442,-21.11801 1.95063,-8.16225 7.27036,-14.77407 8.0142,-17.99738 0.74384,-3.22331 1.04272,-4.19768 0.86782,-7.19045 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path93426"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="tim_side.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -114.48986,695.17805 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path93428"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -130.14023,609.86681 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path93430"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -104.15096,607.18193 c 0,0 8.084189,13.04918 8.475299,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.430179,7.4384 -8.430179,7.4384 z"
id="path93432"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -132.42705,616.31342 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path93434"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m -139.93412,606.27158 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path93436"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -148.98417,612.09833 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path93438"
sodipodi:nodetypes="czzzzccc" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse93444"
cx="-134.23134"
cy="605.89966"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -151.83936,611.33319 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path93450"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -125.71351,606.45314 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path93460"
sodipodi:nodetypes="czczccc" /><g
id="g87723"
transform="translate(-245.68331,241.66621)"><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 119.52907,338.65289 c -2.09219,2.34414 -1.88986,2.60889 -2.66847,5.44177 -0.27342,0.99484 -0.07,3.884 0.18749,5.28494 0.48569,2.64266 0.98091,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,3.45745 -0.46132,4.68884 -0.0275,1.27987 1.39127,1.65821 2.77243,1.85919 2.63163,0.38294 11.52649,-0.64789 13.41104,-2.85314 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path87703"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 117.77278,347.87521 c -0.34028,0.33298 -1.90227,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94224,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31521,-0.24795 4.31521,-0.24795 0,0 -1.14922,-6.89733 -1.4895,-6.56435 z"
id="path87705"
sodipodi:nodetypes="zzzcz" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 128.18835,340.92648 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81853,0.12397 -6.81853,0.12397 0,0 0.53496,-5.02528 2.39804,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path87707"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 130.85378,348.92276 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path87709"
sodipodi:nodetypes="czzzzc" /><path
id="path87711"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 123.60154,355.49345 c -2.29956,0.26822 -4.18068,0.48784 -5.92,0.11578 0.0201,0.26426 -0.004,0.39496 -0.0102,0.55402 -0.0333,0.81319 -0.16624,1.33171 -0.29007,2.39717 0.57167,0.0915 2.01159,0.29169 3.10592,0.11071 1.53113,-0.25322 2.05096,-0.6144 2.5129,-1.47391 0.40273,-0.6787 0.53786,-0.94941 0.60145,-1.70377 z"
sodipodi:nodetypes="ccscscc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 121.18439,349.37601 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path87713"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse87715"
cx="122.14465"
cy="349.83707"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.45022,346.27317 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path87717"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 124.87024,361.63341 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path87719"
sodipodi:nodetypes="cczzzccc" /><path
id="path87721"
style="fill:#d40000;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-dasharray:none"
d="m 123.10153,357.02317 c -1.04218,0.0128 -3.22631,0.0704 -4.02198,0.32659 -1.0609,0.34156 -1.54926,0.96067 -1.54926,0.96067 l -0.12247,0.25425 c 0.58752,0.0931 2.00051,0.28488 3.0794,0.10645 1.53113,-0.25322 2.05108,-0.6143 2.51302,-1.47381 0.0364,-0.0614 0.0696,-0.11878 0.10181,-0.17415 -1.9e-4,0 -3.3e-4,0 -5.2e-4,0 z" /></g><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -104.33255,606.4993 5.522719,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.084419,3.41883 z"
id="path93462" /></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,139 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109512mm"
height="130.34055mm"
viewBox="0 0 58.109512 130.34055"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(82.965227,-429.94362)"><g
id="g34705"
inkscape:export-filename="2024\tough_crowd\godot\sprites\04_tim_cycle_silent.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m -61.391126,503.70336 c 0,0 -1.90592,12.182 -2.04374,17.11454 -0.13783,4.93254 -0.11151,7.90268 1.12821,10.87804 1.23973,2.97536 6.790694,5.68627 11.01342,8.28859 4.222727,2.60233 12.431235,6.53048 12.431235,6.53048 l 4.460262,-5.59126 c 0,0 -18.548967,-9.18169 -18.504207,-12.18296 0.0576,-3.86176 1.9068,-9.44487 2.5763,-11.39865 0.75945,-2.21626 0.2746,-1.73608 0.71597,-1.86133 1.65047,-0.46835 2.70447,0.29039 3.09933,1.11578 0.39487,0.82539 -1.101636,2.67796 -4.509215,7.39327 -3.407579,4.71531 -7.223042,7.70541 -8.479845,12.2583 -1.256803,4.55289 -3.748843,16.11653 -3.748843,16.11653 l 7.81032,1.11577 c 0,0 4.197319,-14.31947 8.007548,-20.2502 3.810229,-5.93073 14.433125,-15.39394 15.176965,-18.61725 0.74384,-3.22331 1.04272,-4.19768 0.86782,-7.19045 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path34617"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="tim_side.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -39.935416,547.71034 c 0,0 -1.639111,4.78933 -1.416698,7.10501 0.222506,2.31567 2.593773,5.09318 3.276587,5.46315 0.682837,0.36996 7.873895,-17.47406 7.873895,-17.47406 0,0 -3.048644,-1.94423 -4.484762,-2.11609 -1.436095,-0.17188 -2.859221,0.73062 -2.859221,0.73062 z"
id="path34615"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -61.276773,551.76246 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path34619"
sodipodi:nodetypes="czzczc" /><g
id="g34657"
transform="translate(85.832035,127.88025)"><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -145.29667,338.57098 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path34621"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -119.3074,335.8861 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path34623"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -147.58349,345.01759 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path34625"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m -155.09056,334.97575 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path34627"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -164.14061,340.8025 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path34629"
sodipodi:nodetypes="czzzzccc" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m -141.31069,309.02327 c -2.09218,2.34414 -1.88986,2.60889 -2.66846,5.44177 -0.27343,0.99484 -0.07,3.884 0.18749,5.28494 0.48568,2.64266 0.9809,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,2.92828 -0.46132,4.15967 -0.0275,1.27987 1.39127,1.65821 2.77242,1.85919 2.63163,0.38294 11.52649,-0.11872 13.41104,-2.32397 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path34631"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m -143.06698,318.24559 c -0.34028,0.33298 -1.90226,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94223,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31522,-0.24795 4.31522,-0.24795 0,0 -1.14922,-6.89733 -1.48951,-6.56435 z"
id="path34633"
sodipodi:nodetypes="zzzcz" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse34635"
cx="-149.38779"
cy="334.60388"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m -132.65141,311.29686 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81852,0.12397 -6.81852,0.12397 0,0 0.53496,-5.02528 2.39803,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path34637"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -129.98598,319.29314 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path34639"
sodipodi:nodetypes="czzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -166.9958,340.03736 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path34641"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.529167"
d="m -143.18913,327.56835 c 0,0 2.31333,0.23285 3.09933,0.15495 0.786,-0.0779 1.27613,-0.35192 1.92159,-0.68185 0.64546,-0.32997 1.67364,-1.42569 1.67364,-1.42569"
id="path34643"
sodipodi:nodetypes="czzc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m -139.65537,319.74639 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path34645"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse34647"
cx="-138.6951"
cy="320.20746"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -141.38954,316.64355 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path34649"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -140.86995,335.15731 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path34651"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -119.48899,335.20347 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path34653" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -135.96952,332.00379 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path34655"
sodipodi:nodetypes="cczzzccc" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.10952mm"
height="130.34058mm"
viewBox="0 0 58.10952 130.34058"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.53354917"
inkscape:cx="-534.15883"
inkscape:cy="1838.6309"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(79.458742,-568.20164)"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m -57.884633,641.96137 c 0,0 -1.90592,12.182 -2.04374,17.11454 -0.13783,4.93254 -0.11151,7.90268 1.128211,10.87804 1.23973,2.97536 6.790694,5.68627 11.01342,8.28859 4.222727,2.60233 12.431235,6.53048 12.431235,6.53048 l 4.460262,-5.59126 c 0,0 -18.548967,-9.18169 -18.504207,-12.18296 0.0576,-3.86176 1.9068,-9.44487 2.5763,-11.39865 0.75945,-2.21626 0.2746,-1.73608 0.71597,-1.86133 1.650469,-0.46835 2.70447,0.29039 3.09933,1.11578 0.39487,0.82539 -1.101636,2.67796 -4.509215,7.39327 -3.407579,4.71531 -7.223042,7.70541 -8.479845,12.2583 -1.256803,4.55289 -3.748843,16.11653 -3.748843,16.11653 l 7.81032,1.11577 c 0,0 4.197319,-14.31947 8.007548,-20.2502 3.810229,-5.93073 14.433125,-15.39394 15.176965,-18.61725 0.74384,-3.22331 1.04272,-4.19768 0.86782,-7.19045 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path96183"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="2024\tough_crowd\godot\sprites\04_tim_cycle_talk.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -36.428922,685.96835 c 0,0 -1.639111,4.78933 -1.416698,7.10501 0.222506,2.31567 2.593773,5.09318 3.276587,5.46315 0.682837,0.36996 7.873895,-17.47406 7.873895,-17.47406 0,0 -3.048644,-1.94423 -4.484762,-2.11609 -1.436095,-0.17188 -2.859221,0.73062 -2.859221,0.73062 z"
id="path96185"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m -57.770279,690.02047 c 0,0 -4.985441,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path96187"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -55.958141,604.70924 -10.6617,18.10009 3.71919,6.19867 7.93429,-6.69456 z"
id="path96189"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -29.968871,602.02436 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path96191"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -58.244961,611.15585 c 0.53731,-7.05671 3.55658,-8.44287 7.31852,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92386,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35172,-10.27732 -3.08782,-13.74315 z"
id="path96193"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m -65.752031,601.11401 c 0,0 -8.28412,3.73801 -10.41375,5.95072 -2.12963,2.21271 -2.97536,5.70277 -2.97536,5.70277 0,0 2.82978,0.77704 5.95071,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path96195"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -74.802081,606.94076 c 0,0 0.80335,14.18093 2.72741,18.1001 1.92407,3.91917 3.0154,5.35956 5.45483,5.70276 2.43943,0.3432 4.8853,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.4959,-3.71919 -0.96657,-1.84136 -5.45482,-3.47126 -5.45482,-3.47126 l -3.7192,-15.37268 z"
id="path96197"
sodipodi:nodetypes="czzzzccc" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse96203"
cx="-60.049259"
cy="600.74213"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -77.657271,606.17562 c 0.29096,-1.24084 6.09624,-5.26151 7.78475,-5.10751 1.68851,0.15401 3.46592,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44011,3.54022 -0.83879,0.74898 -4.11973,4.0705 -5.56092,3.75185 -1.44119,-0.31865 -4.94501,-7.07052 -4.65405,-8.31136 z"
id="path96209"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -51.531421,601.29557 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path96219"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m -30.150461,601.34173 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path96221" /><g
id="g96300"
transform="translate(-171.50123,236.50864)"><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 119.52907,338.65289 c -2.09219,2.34414 -1.88986,2.60889 -2.66847,5.44177 -0.27342,0.99484 -0.07,3.884 0.18749,5.28494 0.48569,2.64266 0.98091,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,3.45745 -0.46132,4.68884 -0.0275,1.27987 1.39127,1.65821 2.77243,1.85919 2.63163,0.38294 11.52649,-0.64789 13.41104,-2.85314 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path96280"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 117.77278,347.87521 c -0.34028,0.33298 -1.90227,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94224,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31521,-0.24795 4.31521,-0.24795 0,0 -1.14922,-6.89733 -1.4895,-6.56435 z"
id="path96282"
sodipodi:nodetypes="zzzcz" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 128.18835,340.92648 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81853,0.12397 -6.81853,0.12397 0,0 0.53496,-5.02528 2.39804,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path96284"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 130.85378,348.92276 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path96286"
sodipodi:nodetypes="czzzzc" /><path
id="path96288"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 123.60154,355.49345 c -2.29956,0.26822 -4.18068,0.48784 -5.92,0.11578 0.0201,0.26426 -0.004,0.39496 -0.0102,0.55402 -0.0333,0.81319 -0.16624,1.33171 -0.29007,2.39717 0.57167,0.0915 2.01159,0.29169 3.10592,0.11071 1.53113,-0.25322 2.05096,-0.6144 2.5129,-1.47391 0.40273,-0.6787 0.53786,-0.94941 0.60145,-1.70377 z"
sodipodi:nodetypes="ccscscc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 121.18439,349.37601 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path96290"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse96292"
cx="122.14465"
cy="349.83707"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.45022,346.27317 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path96294"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 124.87024,361.63341 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path96296"
sodipodi:nodetypes="cczzzccc" /><path
id="path96298"
style="fill:#d40000;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-dasharray:none"
d="m 123.10153,357.02317 c -1.04218,0.0128 -3.22631,0.0704 -4.02198,0.32659 -1.0609,0.34156 -1.54926,0.96067 -1.54926,0.96067 l -0.12247,0.25425 c 0.58752,0.0931 2.00051,0.28488 3.0794,0.10645 1.53113,-0.25322 2.05108,-0.6143 2.51302,-1.47381 0.0364,-0.0614 0.0696,-0.11878 0.10181,-0.17415 -1.9e-4,0 -3.3e-4,0 -5.2e-4,0 z" /></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

135
godot/sprites/tim_side.svg Normal file
View File

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109528mm"
height="130.09814mm"
viewBox="0 0 58.109528 130.09814"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.5091049"
inkscape:cx="472.46549"
inkscape:cy="1378.3004"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-202.78324,-332.67223)"><g
id="g86033"
transform="translate(130.32853,246.94222)"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m 94.715575,157.94194 c 0,0 -4.325214,13.16756 -4.463038,18.1001 -0.137824,4.93254 1.239732,8.92607 2.231518,13.14116 0.991787,4.2151 2.107807,7.02504 3.471253,11.15759 1.363446,4.13255 4.958932,11.65349 4.958932,11.65349 l 6.9425,-0.49589 c 0,0 -8.182366,-18.66256 -7.934289,-26.03439 0.156809,-4.65985 1.217959,-10.68976 2.507329,-14.50314 0.75041,-2.21934 3.86462,-1.30233 4.93106,-1.36544 5.05156,-0.29885 3.57229,-1.69319 4.71099,0.24796 1.1387,1.94114 0.25948,6.03253 0,10.1658 -0.25948,4.13327 0.44271,7.21459 1.73563,12.39733 1.29292,5.18274 6.69455,18.34804 6.69455,18.34804 l 5.20688,-0.49589 c 0,0 -4.00962,-17.2333 -3.96714,-24.05082 0.0425,-6.81752 0.74383,-12.64526 1.48767,-15.86857 0.74384,-3.22331 1.66259,-5.68536 1.48769,-8.67813 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path85991"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="tim_side.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 99.762166,208.50799 c 0,0 -5.030835,0.56135 -7.030164,1.75067 -1.999329,1.18932 -3.499358,4.51914 -3.542582,5.29454 -0.04322,0.7754 19.16321,-0.33561 19.16321,-0.33561 0,0 0.45738,-3.5868 0,-4.95893 -0.45738,-1.37213 -1.88087,-2.27406 -1.88087,-2.27406 z"
id="path85993"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 119.43373,208.78861 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path85995"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 95.955307,122.23764 -10.661699,18.10009 3.719196,6.19867 7.93429,-6.69456 z"
id="path85997"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 121.94458,119.55276 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path85999"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 93.668486,128.68425 c 0.537318,-7.05671 3.556584,-8.44287 7.318524,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.164366,-1.11578 c 0.405586,-1.34482 3.923854,-14.11753 3.583715,-18.48988 -1.288887,-16.56897 -3.351721,-10.27732 -3.087823,-13.74315 z"
id="path86001"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m 86.161419,118.64241 c 0,0 -8.284124,3.73801 -10.413754,5.95072 -2.12963,2.21271 -2.975358,5.70277 -2.975358,5.70277 0,0 2.829778,0.77704 5.950717,-0.24794 3.120939,-1.02498 11.405539,-7.68635 11.405539,-7.68635 z"
id="path86003"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 77.111372,124.46916 c 0,0 0.803347,14.18093 2.72741,18.1001 1.924063,3.91917 3.015395,5.35956 5.454824,5.70276 2.439429,0.3432 4.885306,-1.71018 5.950718,-3.47125 1.065412,-1.76107 0.470681,-1.87783 -0.495894,-3.71919 -0.966575,-1.84136 -5.454824,-3.47126 -5.454824,-3.47126 l -3.719197,-15.37268 z"
id="path86005"
sodipodi:nodetypes="czzzzccc" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 99.941293,92.689928 c -2.092188,2.344141 -1.889863,2.608889 -2.668465,5.441773 -0.273427,0.99484 -0.06999,3.883999 0.187488,5.284939 0.485684,2.64266 0.980907,5.75736 0.941431,6.72188 -0.05236,1.27939 -0.43489,2.92828 -0.461319,4.15967 -0.02747,1.27987 1.391268,1.65821 2.772422,1.85919 2.63163,0.38294 11.52649,-0.11872 13.41104,-2.32397 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.607075 -2.00397,-10.342427 -6.55964,-11.89716 -4.55567,-1.554733 -6.85979,-0.862374 -9.666697,2.282558 z"
id="path86007"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 98.185002,101.91225 c -0.340283,0.33298 -1.902265,3.04885 -2.517602,3.86445 -0.615337,0.8156 -0.942236,2.59808 -0.308109,2.94785 0.634128,0.34977 4.315215,-0.24795 4.315215,-0.24795 0,0 -1.149221,-6.89733 -1.489504,-6.56435 z"
id="path86009"
sodipodi:nodetypes="zzzcz" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse86011"
cx="91.864189"
cy="118.27052"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 108.60057,94.96352 c 0,0 -3.95313,3.415906 -7.12846,3.719191 -3.175319,0.30329 -6.818523,0.123973 -6.818523,0.123973 0,0 0.53496,-5.025283 2.398033,-7.220522 1.863073,-2.195239 4.13451,-3.366776 5.29637,-4.03278 1.16185,-0.666004 4.08908,-2.356804 5.6859,-1.656773 1.59683,0.700029 1.3954,3.203074 1.76388,3.451807 0.36848,0.248733 1.54258,-1.060142 4.03718,-0.626097 2.4946,0.434045 3.30904,0.772804 4.89878,3.471253 1.58974,2.698449 2.33939,7.104909 2.01364,10.033028 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.371099 -0.83545,-2.082808 -2.13069,-3.307586 -3.47125,-4.525021 z"
id="path86013"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 111.266,102.9598 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path86015"
sodipodi:nodetypes="czzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 74.256177,123.70402 c 0.290963,-1.24084 6.096247,-5.26151 7.784755,-5.10751 1.688507,0.15401 3.465915,4.42856 3.870329,6.1268 0.404413,1.69823 -0.601328,2.79124 -1.440115,3.54022 -0.838787,0.74898 -4.119724,4.0705 -5.560915,3.75185 -1.441191,-0.31865 -4.945017,-7.07052 -4.654054,-8.31136 z"
id="path86017"
sodipodi:nodetypes="zzzzzz" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.529167"
d="m 98.062853,111.23501 c 0,0 2.313327,0.23285 3.099327,0.15495 0.786,-0.0779 1.27613,-0.35192 1.92159,-0.68185 0.64546,-0.32997 1.67364,-1.42569 1.67364,-1.42569"
id="path86019"
sodipodi:nodetypes="czzc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 101.59661,103.41305 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path86021"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse86023"
cx="102.55688"
cy="103.8741"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 99.862443,100.31021 c 0,0 0.763767,-0.16717 1.358757,-0.438309 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.008067,1.205359 -1.008067,1.205359 z"
id="path86025"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 100.38203,118.82397 c 0,0 -3.934477,0.44841 -6.162348,2.7938 -2.227872,2.3454 -6.198663,11.52951 -6.198663,11.52951 0,0 -0.15301,4.42886 0.619865,6.45908 0.772875,2.03022 3.676658,5.24318 3.676658,5.24318 l 5.279499,-4.82614 z"
id="path86027"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 121.76299,118.87013 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path86029" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 105.28246,115.67045 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path86031"
sodipodi:nodetypes="cczzzccc" /></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d2264dy2o4q6d"
path="res://.godot/imported/tim_side.svg-e21ef55d796afaf54c86d6a3abe989e5.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/tim_side.svg"
dest_files=["res://.godot/imported/tim_side.svg-e21ef55d796afaf54c86d6a3abe989e5.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false

136
godot/sprites/tim_talk.svg Normal file
View File

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.109528mm"
height="130.09811mm"
viewBox="0 0 58.109528 130.09811"
version="1.1"
id="svg674"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
sodipodi:docname="´tim_side.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview676"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.5091049"
inkscape:cx="472.46549"
inkscape:cy="1378.3004"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false"><inkscape:grid
type="xygrid"
id="grid1241" /></sodipodi:namedview><defs
id="defs671" /><g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-92.042483,-331.69295)"><path
style="fill:#37abc8;stroke:none;stroke-width:0.529167"
d="m 114.30335,403.9049 c 0,0 -4.32521,13.16756 -4.46304,18.1001 -0.13782,4.93254 1.23974,8.92607 2.23152,13.14116 0.99179,4.2151 2.10781,7.02504 3.47125,11.15759 1.36345,4.13255 4.95894,11.65349 4.95894,11.65349 l 6.9425,-0.49589 c 0,0 -8.18237,-18.66256 -7.93429,-26.03439 0.15681,-4.65985 1.21796,-10.68976 2.50733,-14.50314 0.75041,-2.21934 3.86462,-1.30233 4.93106,-1.36544 5.05156,-0.29885 3.57229,-1.69319 4.71099,0.24796 1.1387,1.94114 0.25948,6.03253 0,10.1658 -0.25948,4.13327 0.44271,7.21459 1.73563,12.39733 1.29292,5.18274 6.69455,18.34804 6.69455,18.34804 l 5.20688,-0.49589 c 0,0 -4.00962,-17.2333 -3.96714,-24.05082 0.0425,-6.81752 0.74383,-12.64526 1.48767,-15.86857 0.74384,-3.22331 1.66259,-5.68536 1.48769,-8.67813 -0.1749,-2.99277 -0.74384,-6.44661 -0.74384,-6.44661 z"
id="path84182"
sodipodi:nodetypes="czzzccssszzzcczzzcc"
inkscape:export-filename="tim_side.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 119.34994,454.47095 c 0,0 -5.03083,0.56135 -7.03016,1.75067 -1.99933,1.18932 -3.49936,4.51914 -3.54258,5.29454 -0.0432,0.7754 19.16321,-0.33561 19.16321,-0.33561 0,0 0.45738,-3.5868 0,-4.95893 -0.45738,-1.37213 -1.88087,-2.27406 -1.88087,-2.27406 z"
id="path84184"
sodipodi:nodetypes="czzczcc" /><path
style="fill:#a05a2c;stroke:none;stroke-width:0.529167"
d="m 139.02151,454.75157 c 0,0 -4.98544,0.35076 -7.08646,1.8959 -2.10102,1.54514 -2.87674,3.7105 -2.75491,4.53308 0.12183,0.82258 16.86037,0.24795 16.86037,0.24795 0,0 1.28496,-5.7349 -0.77392,-6.36024 -2.05888,-0.62533 -6.24508,-0.31669 -6.24508,-0.31669 z"
id="path84186"
sodipodi:nodetypes="czzczc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 115.54308,368.2006 -10.6617,18.10009 3.7192,6.19867 7.93429,-6.69456 z"
id="path84188"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 141.53236,365.51572 c 0,0 8.08419,13.04918 8.4753,17.06578 0.39111,4.0166 0.0172,3.47629 -1.48768,5.95071 -1.50484,2.47442 -8.43018,7.4384 -8.43018,7.4384 z"
id="path84190"
sodipodi:nodetypes="czzcc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 113.25626,374.64721 c 0.53732,-7.05671 3.55659,-8.44287 7.31853,-10.51542 3.76194,-2.07255 9.9509,-2.79534 14.37662,-2.1039 4.42572,0.69144 7.05199,2.17837 8.11374,6.42066 0.73142,2.92245 1.91125,12.87259 2.0346,23.17793 0.0557,4.65409 -0.17501,16.36954 -0.17501,16.36954 l -32.16437,-1.11578 c 0.40559,-1.34482 3.92385,-14.11753 3.58372,-18.48988 -1.28889,-16.56897 -3.35173,-10.27732 -3.08783,-13.74315 z"
id="path84192"
sodipodi:nodetypes="szzssccss" /><path
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
d="m 105.7492,364.60537 c 0,0 -8.284129,3.73801 -10.413759,5.95072 -2.12963,2.21271 -2.975358,5.70277 -2.975358,5.70277 0,0 2.829778,0.77704 5.950717,-0.24794 3.12094,-1.02498 11.40554,-7.68635 11.40554,-7.68635 z"
id="path84194"
sodipodi:nodetypes="czczcc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 96.699148,370.43212 c 0,0 0.803347,14.18093 2.72741,18.1001 1.924062,3.91917 3.015392,5.35956 5.454822,5.70276 2.43943,0.3432 4.88531,-1.71018 5.95072,-3.47125 1.06541,-1.76107 0.47068,-1.87783 -0.49589,-3.71919 -0.96658,-1.84136 -5.45483,-3.47126 -5.45483,-3.47126 l -3.71919,-15.37268 z"
id="path84196"
sodipodi:nodetypes="czzzzccc" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 119.52907,338.65289 c -2.09219,2.34414 -1.88986,2.60889 -2.66847,5.44177 -0.27342,0.99484 -0.07,3.884 0.18749,5.28494 0.48569,2.64266 0.98091,5.75736 0.94143,6.72188 -0.0524,1.27939 -0.43489,3.45745 -0.46132,4.68884 -0.0275,1.27987 1.39127,1.65821 2.77243,1.85919 2.63163,0.38294 11.52649,-0.64789 13.41104,-2.85314 1.88455,-2.20525 2.80658,-6.9218 2.04374,-11.52888 -0.76284,-4.60708 -2.00397,-10.34243 -6.55964,-11.89716 -4.55567,-1.55473 -6.85979,-0.86237 -9.6667,2.28256 z"
id="path84198"
sodipodi:nodetypes="sssssszzzs" /><path
style="fill:#ffd5d5;stroke:#ffd5d5;stroke-width:0.529167"
d="m 117.77278,347.87521 c -0.34028,0.33298 -1.90227,3.04885 -2.5176,3.86445 -0.61534,0.8156 -0.94224,2.59808 -0.30811,2.94785 0.63413,0.34977 4.31521,-0.24795 4.31521,-0.24795 0,0 -1.14922,-6.89733 -1.4895,-6.56435 z"
id="path84200"
sodipodi:nodetypes="zzzcz" /><ellipse
style="fill:#000000;stroke:#000000;stroke-width:0.529167"
id="ellipse84202"
cx="111.45197"
cy="364.23349"
rx="5.2068768"
ry="5.0829043" /><path
style="fill:#6c5353;stroke:none;stroke-width:0.529167"
d="m 128.18835,340.92648 c 0,0 -3.95313,3.41591 -7.12846,3.71919 -3.17532,0.30329 -6.81853,0.12397 -6.81853,0.12397 0,0 0.53496,-5.02528 2.39804,-7.22052 1.86307,-2.19524 4.13451,-3.36677 5.29637,-4.03278 1.16185,-0.666 4.08908,-2.3568 5.6859,-1.65677 1.59683,0.70003 1.3954,3.20307 1.76388,3.45181 0.36848,0.24873 1.54258,-1.06015 4.03718,-0.6261 2.4946,0.43404 3.30904,0.7728 4.89878,3.47125 1.58974,2.69845 2.33939,7.10491 2.01364,10.03303 -0.32575,2.92812 -1.86063,5.57733 -3.06302,7.75895 -1.20239,2.18162 -5.00146,5.59019 -5.00146,5.59019 0,0 1.31069,-6.40157 1.10238,-8.7161 -0.20831,-2.31453 -0.878,-5.28829 -1.71345,-7.3711 -0.83545,-2.08281 -2.13069,-3.30759 -3.47125,-4.52502 z"
id="path84204"
sodipodi:nodetypes="czczzzzzzzzczzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 130.85378,348.92276 c 0,0 1.57176,-2.04779 2.54145,-2.04556 0.96969,0.002 1.87538,0.71158 2.20053,1.3947 0.32515,0.68312 0.36238,1.93167 0,2.60343 -0.36238,0.67176 -0.65617,1.15197 -1.36371,1.45669 -0.70754,0.30471 -2.10754,-0.5269 -2.10754,-0.5269"
id="path84206"
sodipodi:nodetypes="czzzzc" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 93.843953,369.66698 c 0.290963,-1.24084 6.096247,-5.26151 7.784757,-5.10751 1.68851,0.15401 3.46591,4.42856 3.87033,6.1268 0.40441,1.69823 -0.60133,2.79124 -1.44012,3.54022 -0.83878,0.74898 -4.119722,4.0705 -5.560913,3.75185 -1.441191,-0.31865 -4.945017,-7.07052 -4.654054,-8.31136 z"
id="path84208"
sodipodi:nodetypes="zzzzzz" /><path
id="path84210"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 123.60154,355.49345 c -2.29956,0.26822 -4.18068,0.48784 -5.92,0.11578 0.0201,0.26426 -0.004,0.39496 -0.0102,0.55402 -0.0333,0.81319 -0.16624,1.33171 -0.29007,2.39717 0.57167,0.0915 2.01159,0.29169 3.10592,0.11071 1.53113,-0.25322 2.05096,-0.6144 2.5129,-1.47391 0.40273,-0.6787 0.53786,-0.94941 0.60145,-1.70377 z"
sodipodi:nodetypes="ccscscc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.529167"
d="m 121.18439,349.37601 c -0.0422,0.56486 0.11734,1.13317 0.67274,1.49212 0.55539,0.35894 0.82397,0.17069 1.48003,-0.11053 0.65607,-0.28122 0.79132,-0.6673 0.87456,-1.27105 0.0832,-0.60376 0.018,-1.30583 -0.33637,-1.54738 -0.35438,-0.24156 -1.2413,-0.49737 -2.00981,-0.0621 -0.34807,0.29704 -0.63893,0.93416 -0.68115,1.49901 z"
id="path84212"
sodipodi:nodetypes="zzzzzcz" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.529167"
id="ellipse84214"
cx="122.14465"
cy="349.83707"
rx="1.1622494"
ry="1.0692694" /><path
style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.45022,346.27317 c 0,0 0.76377,-0.16717 1.35876,-0.43831 0.59499,-0.27114 1.76526,-0.36824 2.5203,-0.35065 0.75503,0.0176 1.50855,0.28927 1.66558,0.26299 0.15704,-0.0263 0.46101,-0.55089 0.17529,-0.87663 -0.28572,-0.32574 -0.65192,-0.34548 -1.44643,-0.30682 -0.7945,0.0387 -2.67031,0.0616 -3.26543,0.50406 -0.59512,0.44242 -1.00807,1.20536 -1.00807,1.20536 z"
id="path84216"
sodipodi:nodetypes="czzzzzzc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 119.96981,364.78693 c 0,0 -3.93448,0.44841 -6.16235,2.7938 -2.22787,2.3454 -6.19866,11.52951 -6.19866,11.52951 0,0 -0.15301,4.42886 0.61986,6.45908 0.77288,2.03022 3.67666,5.24318 3.67666,5.24318 l 5.2795,-4.82614 z"
id="path84218"
sodipodi:nodetypes="czczccc" /><path
style="fill:#ff7f2a;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 141.35077,364.83309 5.52272,8.94156 2.71753,4.6461 -3.59415,2.45455 -5.08442,3.41883 z"
id="path84220" /><path
style="fill:#ffd5d5;fill-opacity:1;stroke:none;stroke-width:0.529167"
d="m 124.87024,361.63341 -1.8409,1.44643 c 0,0 1.31618,1.11893 2.19155,1.44643 0.87538,0.3275 1.87495,0.44578 2.93669,0.35065 1.06175,-0.0951 2.21607,-0.51103 3.28734,-1.00812 1.07128,-0.49709 2.71754,-1.9724 2.71754,-1.9724 -1.69952,-0.62303 -1.68475,-0.96589 -2.06007,-1.88474 z"
id="path84222"
sodipodi:nodetypes="cczzzccc" /><path
id="path84250"
style="fill:#d40000;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-dasharray:none"
d="m 123.10153,357.02317 c -1.04218,0.0128 -3.22631,0.0704 -4.02198,0.32659 -1.0609,0.34156 -1.54926,0.96067 -1.54926,0.96067 l -0.12247,0.25425 c 0.58752,0.0931 2.00051,0.28488 3.0794,0.10645 1.53113,-0.25322 2.05108,-0.6143 2.51302,-1.47381 0.0364,-0.0614 0.0696,-0.11878 0.10181,-0.17415 -1.9e-4,0 -3.3e-4,0 -5.2e-4,0 z" /></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b8tb4o75kjffn"
path="res://.godot/imported/tim_talk.svg-0c82c9a95046071242d6f5927c9a9d8e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/tim_talk.svg"
dest_files=["res://.godot/imported/tim_talk.svg-0c82c9a95046071242d6f5927c9a9d8e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false