blob: 7eea485e96e1d208517baaad16d264ac930e827b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
[gd_scene load_steps=9 format=2]
[ext_resource path="res://assets/wageslavery.png" type="Texture" id=1]
[ext_resource path="res://lib/upgrade_interface.gd" type="Script" id=2]
[ext_resource path="res://lib/base_buyable.gd" type="Script" id=3]
[ext_resource path="res://assets/glasses.png" type="Texture" id=4]
[ext_resource path="res://assets/Kaffeevertrag.png" type="Texture" id=5]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 32, 32 )
[sub_resource type="RectangleShape2D" id=2]
extents = Vector2( 14.3177, 10 )
[sub_resource type="RectangleShape2D" id=3]
extents = Vector2( 11.8724, 13.514 )
[node name="Node2D" type="Node2D"]
[node name="wageslavery" type="Sprite" parent="."]
position = Vector2( 62.9383, 60.4207 )
texture = ExtResource( 1 )
script = ExtResource( 2 )
tick_rate = -1.0
base_cost = 150.0
cost_multiplier = 2.0
building_identifier = "wageslavery"
[node name="Area2D" type="Area2D" parent="wageslavery"]
script = ExtResource( 3 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="wageslavery/Area2D"]
shape = SubResource( 1 )
[node name="Label" type="Label" parent="wageslavery"]
margin_left = -8.62447
margin_top = 15.9221
margin_right = 31.3755
margin_bottom = 29.9221
__meta__ = {
"_edit_use_anchors_": false
}
[node name="sunglasses" type="Sprite" parent="."]
position = Vector2( 151.755, 62.1597 )
scale = Vector2( 2.07172, 1.99134 )
texture = ExtResource( 4 )
script = ExtResource( 2 )
tick_rate = -1.0
base_cost = 200.0
cost_multiplier = 100.0
building_identifier = "sunglasses"
[node name="Area2D" type="Area2D" parent="sunglasses"]
script = ExtResource( 3 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="sunglasses/Area2D"]
position = Vector2( 0.82769, 0.430544 )
shape = SubResource( 2 )
[node name="Label" type="Label" parent="sunglasses"]
margin_right = 40.0
margin_bottom = 14.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="contract" type="Sprite" parent="."]
position = Vector2( 58.9314, 136.893 )
scale = Vector2( 1.84407, 1.8057 )
texture = ExtResource( 5 )
script = ExtResource( 2 )
tick_rate = -1.0
base_cost = 1000.0
cost_multiplier = 1.1
building_identifier = "contract"
[node name="Area2D" type="Area2D" parent="contract"]
script = ExtResource( 3 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="contract/Area2D"]
shape = SubResource( 3 )
[node name="Label" type="Label" parent="contract"]
margin_left = -8.34222
margin_top = 1.0
margin_right = 12.6578
margin_bottom = 15.0
__meta__ = {
"_edit_use_anchors_": false
}
|