chingu 0.7.5 → 0.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,7 +67,7 @@ For example, inside game state Menu you call push_game_state(Level). When Level
67
67
  Traits are extensions (or plugins if you so will) to BasicGameObjects included on the class-level.
68
68
  The aim is so encapsulate common behavior into modules for easy inclusion in your game classes.
69
69
  Making a trait is easy, just an ordinary module with the methods setup_trait(), update_trait() and/or draw_trait().
70
- It currently has to be namespaced to Chingu::Traits for "has_traits" to work inside GameObject-classes.
70
+ It currently has to be namespaced to Chingu::Traits for "traits" to work inside GameObject-classes.
71
71
 
72
72
  == OTHER CLASSES / HELPERS
73
73
 
@@ -446,6 +446,54 @@ Or Chingus shortcut:
446
446
 
447
447
  Chingus inputhandler will detect that Menu is a GameState-class, create a new instance and activate it with push_game_state().
448
448
 
449
+ === Premade game states
450
+ Chingu comes with some pre-made game states.
451
+ A simple but usefull one is GameStates::Pause. Once pushed it will draw the previous game state but not update it --
452
+ effectively pausing it.
453
+
454
+ == GameStates::Edit
455
+ The biggest and most usable is GameStates::Edit which enables fast 'n easy level-building with game objects.
456
+ Start example19 and press 'E' to get a full example.
457
+
458
+ Edit commands / shortcuts:
459
+ 1-5: create object 1..5 shown in toolbar at mousecursor
460
+ DEL: delete selected objects
461
+ BACKSPACE: reset selected objects to default values
462
+ CTRL+A: select all objects (not code-created ones though)
463
+ CTRL+S: Save
464
+ E: Save and Quit
465
+ ESC: Deselect all objects
466
+ Right Mouse Button Click: Copy object that was clicked on for fast duplication
467
+ Arrow-keys (with selected objects): Move objects 1 pixel at the time
468
+ Arrow-keys (with no selected objects): Scroll within a viewport
469
+ Page up/down: Modify the zorder of selected game objects
470
+
471
+ # The bellow keys works on all selected game objects
472
+ r: scale up
473
+ f: scale down
474
+ t: tilt left
475
+ g: tilt right
476
+ y: inc zorder
477
+ h: dec zorder
478
+ u: less transparency
479
+ j: more transparencty
480
+
481
+ Mouse Wheel (with no selected objects): Scroll viewport up/down
482
+ Mouse Wheel: Scale up/down
483
+ SHIFT + Mouse Wheel: Tilt left/right
484
+ CTRL + Mouse Wheel: Zorder up/down
485
+ ALT + Mouse Wheel: Transperency less/more
486
+
487
+ Move mouse cursor close to the window border to scroll a viewport if your game state has one.
488
+
489
+ If you're editing game state BigBossLevel the editor will save to big_boss_level.yml by default.
490
+ All the game objects in that file are then easily loaded with the load_game_objects command.
491
+
492
+ Both Edit.new and load_game_objects take parameters as
493
+ :file => "enemies.yml" # Save edited game objects to file enemies.yml
494
+ :debug => true # Will print various debugmsgs to console, usefull if something behaves oddly
495
+ :except => Player # Don't edit or load objects based on class Player
496
+
449
497
  === WorkFlow
450
498
  (This text is under development)
451
499
 
@@ -467,8 +515,6 @@ Compare the 2 snippets below:
467
515
  @color = Color::WHITE
468
516
  end
469
517
 
470
-
471
-
472
518
  === Traits
473
519
  Traits (sometimes called behaviors in other frameworks) is a way of adding logic to any class inheriting from BasicGameObject / GameObject.
474
520
  Chingus trait-implementation is just ordinary ruby modules with 3 special methods:
@@ -479,7 +525,7 @@ Each of those 3 methods must call "super" to continue the trait-chain.
479
525
 
480
526
  Inside a certian trait-module you can also have a module called ClassMethods, methods inside that module will be added,
481
527
  yes you guessed it, as class methods. If initialize_trait is defined inside ClassMethods it will be called class-evaluation time
482
- (basicly on the has_trait :some_trait line).
528
+ (basicly on the trait :some_trait line).
483
529
 
484
530
  A simple trait could be:
485
531
 
@@ -512,7 +558,7 @@ module Chingu
512
558
  end
513
559
 
514
560
  class Enemy < GameObject
515
- has_trait :inspect # includes Chingu::Trait::Inspect and extends Chingu::Trait::Inspect::ClassMethods
561
+ trait :inspect # includes Chingu::Trait::Inspect and extends Chingu::Trait::Inspect::ClassMethods
516
562
  end
517
563
  10.times { Enemy.create }
518
564
  Enemy.inspect # => "There's 10 active instances of class Enemy"
@@ -522,7 +568,7 @@ Enemy.all.first.inspect # => "Hello I'm a Enemy"
522
568
  Example of using traits :velocity and :timer:
523
569
 
524
570
  class Ogre < Chingu::GameObject
525
- has_traits :velocity, :timer
571
+ traits :velocity, :timer
526
572
 
527
573
  def initialize(options)
528
574
  super
@@ -549,7 +595,7 @@ Example of using traits :velocity and :timer:
549
595
 
550
596
  The flow for a game object then becomes:
551
597
 
552
- -- creating a GameObject class X ( with a "has_trait :bounding_box, :scale => 0.80" )
598
+ -- creating a GameObject class X ( with a "trait :bounding_box, :scale => 0.80" )
553
599
  1) trait gets merged into X, instance and class methods are added
554
600
  2) GameObject.initialize_trait(:scale => 0.80) (initialize_trait is a class-method!)
555
601
  -- creating an instance of X
@@ -576,25 +622,25 @@ They modify x, y as you would expect. *speed / angle will come*
576
622
 
577
623
  ==== Trait "bounding_box"
578
624
  Adds accessor 'bounding_box', which returns a Rect based on current image size,x,y,factor_x,factor_y,center_x,center_y
579
- You can also scale the calculated rect with has_trait-options:
625
+ You can also scale the calculated rect with trait-options:
580
626
 
581
627
  # This would return a rect slightly smaller then the image.
582
628
  # Make player think he's better @ dodging bullets then he really is ;)
583
- has_trait :bounding_box, :scale => 0.80
629
+ trait :bounding_box, :scale => 0.80
584
630
 
585
631
  # Make the bounding box bigger then the image
586
632
  # :debug => true shows the actual box in red on the screen
587
- has_trait :bounding_box, :scale => 1.5, :debug => true
633
+ trait :bounding_box, :scale => 1.5, :debug => true
588
634
 
589
635
  ==== Trait "bounding_circle"
590
636
  Adds accessor 'radius', which returns a Fixnum based on current image size,factor_x and factor_y
591
- You can also scale the calculated radius with has_trait-options:
637
+ You can also scale the calculated radius with trait-options:
592
638
 
593
639
  # This would return a radius slightly bigger then what initialize was calculated
594
- has_trait :bounding_circle, :scale => 1.10
640
+ trait :bounding_circle, :scale => 1.10
595
641
 
596
642
  # :debug => true shows the actual circle in red on the screen
597
- has_trait :bounding_circle, :debug => true
643
+ trait :bounding_circle, :debug => true
598
644
 
599
645
  ==== Trait "animation"
600
646
  Automatically load animations depending on the class-name.
@@ -612,7 +658,7 @@ Assuming the below code is included in a class FireBall.
612
658
  #
613
659
  # The below example will set the 200ms delay between each frame on all animations loaded.
614
660
  #
615
- has_trait :automatic_assets, :delay => 200
661
+ trait :automatic_assets, :delay => 200
616
662
 
617
663
  ==== Trait "effect"
618
664
  Adds accessors rotation_rate, fade_rate and scale_rate to game object.
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ begin
14
14
  gemspec.rubyforge_project = "chingu"
15
15
  gemspec.version = Chingu::VERSION
16
16
 
17
- gemspec.add_dependency 'gosu', '>= 0.7.18'
17
+ gemspec.add_dependency 'gosu', '>= 0.7.22'
18
18
  end
19
19
  Jeweler::GemcutterTasks.new
20
20
  rescue LoadError
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{chingu}
8
- s.version = "0.7.5"
8
+ s.version = "0.7.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["ippa"]
12
- s.date = %q{2010-06-13}
12
+ s.date = %q{2010-06-17}
13
13
  s.description = %q{OpenGL accelerated 2D game framework for Ruby. Builds on Gosu (Ruby/C++) which provides all the core functionality. Chingu adds simple yet powerful game states, prettier input handling, deployment safe asset-handling, a basic re-usable game object and stackable game logic.}
14
14
  s.email = %q{ippa@rubylicio.us}
15
15
  s.extra_rdoc_files = [
@@ -41,10 +41,12 @@ Gem::Specification.new do |s|
41
41
  "examples/example16_online_high_scores.rb",
42
42
  "examples/example17_gosu_tutorial.rb",
43
43
  "examples/example18_animation_trait.rb",
44
+ "examples/example19.yml",
44
45
  "examples/example19_edit_viewport.rb",
45
- "examples/example19_game_objects.yml",
46
46
  "examples/example1_basics.rb",
47
47
  "examples/example20_trait_inheritence_test.rb",
48
+ "examples/example21.yml",
49
+ "examples/example21_sidescroller_with_edit.rb",
48
50
  "examples/example2_gamestate_basics.rb",
49
51
  "examples/example3_parallax.rb",
50
52
  "examples/example4_gamestates.rb",
@@ -63,11 +65,16 @@ Gem::Specification.new do |s|
63
65
  "examples/media/Star.png",
64
66
  "examples/media/Starfighter.bmp",
65
67
  "examples/media/background1.png",
68
+ "examples/media/battery.png",
69
+ "examples/media/big_star.png",
70
+ "examples/media/big_stone_wall.bmp",
71
+ "examples/media/black_block.png",
66
72
  "examples/media/bullet.png",
67
73
  "examples/media/bullet_hit.wav",
68
74
  "examples/media/circle.png",
69
75
  "examples/media/city1.png",
70
76
  "examples/media/city2.png",
77
+ "examples/media/cog_wheel.png",
71
78
  "examples/media/droid.bmp",
72
79
  "examples/media/droid_11x15.bmp",
73
80
  "examples/media/droid_11x15.gal",
@@ -84,11 +91,13 @@ Gem::Specification.new do |s|
84
91
  "examples/media/ruby.png",
85
92
  "examples/media/saucer.gal",
86
93
  "examples/media/saucer.png",
94
+ "examples/media/saw.png",
87
95
  "examples/media/spaceship.png",
88
96
  "examples/media/star_25x25_default.png",
89
97
  "examples/media/star_25x25_explode.gal",
90
98
  "examples/media/star_25x25_explode.png",
91
99
  "examples/media/stone_wall.bmp",
100
+ "examples/media/tube.png",
92
101
  "examples/media/video_games.png",
93
102
  "examples/media/wood.png",
94
103
  "lib/chingu.rb",
@@ -154,6 +163,7 @@ Gem::Specification.new do |s|
154
163
  "examples/example19_edit_viewport.rb",
155
164
  "examples/example1_basics.rb",
156
165
  "examples/example20_trait_inheritence_test.rb",
166
+ "examples/example21_sidescroller_with_edit.rb",
157
167
  "examples/example2_gamestate_basics.rb",
158
168
  "examples/example3_parallax.rb",
159
169
  "examples/example4_gamestates.rb",
@@ -171,12 +181,12 @@ Gem::Specification.new do |s|
171
181
  s.specification_version = 3
172
182
 
173
183
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
174
- s.add_runtime_dependency(%q<gosu>, [">= 0.7.18"])
184
+ s.add_runtime_dependency(%q<gosu>, [">= 0.7.22"])
175
185
  else
176
- s.add_dependency(%q<gosu>, [">= 0.7.18"])
186
+ s.add_dependency(%q<gosu>, [">= 0.7.22"])
177
187
  end
178
188
  else
179
- s.add_dependency(%q<gosu>, [">= 0.7.18"])
189
+ s.add_dependency(%q<gosu>, [">= 0.7.22"])
180
190
  end
181
191
  end
182
192
 
@@ -95,7 +95,14 @@ class Box < GameObject
95
95
  @image = Image["rect.png"]
96
96
  self.velocity_x = 3 - rand * 6
97
97
  self.velocity_y = 3 - rand * 6
98
- self.factor = 2
98
+
99
+ # Test to make sure the bounding_box works with all bellow combos
100
+ #self.factor = 2
101
+ #self.factor = -2
102
+ #self.rotation_center = :left_top
103
+ #self.rotation_center = :center
104
+ #self.rotation_center = :right_bottom
105
+
99
106
  cache_bounding_box
100
107
  end
101
108
 
@@ -4,1588 +4,2598 @@
4
4
  :y: 5.51124415160293
5
5
  :angle: 0
6
6
  :zorder: 100
7
+ :factor_x: 1
8
+ :factor_y: 1
9
+ :color: 4292071387
7
10
  - Star:
8
11
  :x: 936.0
9
12
  :y: 200.0
10
13
  :angle: 0
11
14
  :zorder: 100
15
+ :factor_x: 1
16
+ :factor_y: 1
17
+ :color: 4282437437
12
18
  - Star:
13
19
  :x: 1504.0
14
20
  :y: 544.0
15
21
  :angle: 0
16
22
  :zorder: 100
23
+ :factor_x: 1
24
+ :factor_y: 1
25
+ :color: 4288451529
17
26
  - Star:
18
27
  :x: 1072.0
19
28
  :y: 1112.0
20
29
  :angle: 0
21
30
  :zorder: 100
31
+ :factor_x: 1
32
+ :factor_y: 1
33
+ :color: 4286098571
22
34
  - Star:
23
35
  :x: 64.0
24
36
  :y: 1152.0
25
37
  :angle: 0
26
38
  :zorder: 100
39
+ :factor_x: 1
40
+ :factor_y: 1
41
+ :color: 4293715821
27
42
  - Star:
28
43
  :x: 896.0
29
44
  :y: 912.0
30
45
  :angle: 0
31
46
  :zorder: 100
47
+ :factor_x: 1
48
+ :factor_y: 1
49
+ :color: 4284874301
32
50
  - Star:
33
51
  :x: 232.0
34
52
  :y: 1072.0
35
53
  :angle: 0
36
54
  :zorder: 100
55
+ :factor_x: 1
56
+ :factor_y: 1
57
+ :color: 4287386320
37
58
  - Star:
38
59
  :x: 1328.51127397829
39
60
  :y: 130.436347265118
40
61
  :angle: 0
41
62
  :zorder: 100
63
+ :factor_x: 1
64
+ :factor_y: 1
65
+ :color: 4283203972
42
66
  - Star:
43
67
  :x: 856.0
44
68
  :y: 336.0
45
69
  :angle: 0
46
70
  :zorder: 100
71
+ :factor_x: 1
72
+ :factor_y: 1
73
+ :color: 4283552994
47
74
  - Star:
48
75
  :x: 1032.0
49
76
  :y: 1144.0
50
77
  :angle: 0
51
78
  :zorder: 100
79
+ :factor_x: 1
80
+ :factor_y: 1
81
+ :color: 4289951224
52
82
  - Star:
53
83
  :x: 1056.0
54
84
  :y: 960.0
55
85
  :angle: 0
56
86
  :zorder: 100
87
+ :factor_x: 1
88
+ :factor_y: 1
89
+ :color: 4288468715
57
90
  - Star:
58
91
  :x: 1471.78511833082
59
92
  :y: 251.377538642698
60
93
  :angle: 0
61
94
  :zorder: 100
95
+ :factor_x: 1
96
+ :factor_y: 1
97
+ :color: 4292672160
62
98
  - Star:
63
99
  :x: 1040.0
64
100
  :y: 96.0
65
101
  :angle: 0
66
102
  :zorder: 100
103
+ :factor_x: 1
104
+ :factor_y: 1
105
+ :color: 4284652721
67
106
  - Star:
68
107
  :x: 520.0
69
108
  :y: 24.0
70
109
  :angle: 0
71
110
  :zorder: 100
111
+ :factor_x: 1
112
+ :factor_y: 1
113
+ :color: 4290017954
72
114
  - Star:
73
115
  :x: 1400.0
74
116
  :y: 704.0
75
117
  :angle: 0
76
118
  :zorder: 100
119
+ :factor_x: 1
120
+ :factor_y: 1
121
+ :color: 4283924912
77
122
  - Star:
78
123
  :x: 1352.0
79
124
  :y: 1144.0
80
125
  :angle: 0
81
126
  :zorder: 100
127
+ :factor_x: 1
128
+ :factor_y: 1
129
+ :color: 4282275163
82
130
  - Star:
83
131
  :x: 1088.0
84
132
  :y: 288.0
85
133
  :angle: 0
86
134
  :zorder: 100
135
+ :factor_x: 1
136
+ :factor_y: 1
137
+ :color: 4293571889
87
138
  - Star:
88
139
  :x: 200.0
89
140
  :y: 888.0
90
141
  :angle: 0
91
142
  :zorder: 100
143
+ :factor_x: 1
144
+ :factor_y: 1
145
+ :color: 4290827607
92
146
  - StoneWall:
93
147
  :x: 264.0
94
148
  :y: 448.0
95
149
  :angle: 0
96
150
  :zorder: 100
151
+ :factor_x: 1
152
+ :factor_y: 1
153
+ :color: 4294967295
97
154
  - StoneWall:
98
155
  :x: 296.0
99
156
  :y: 448.0
100
157
  :angle: 0
101
158
  :zorder: 100
159
+ :factor_x: 1
160
+ :factor_y: 1
161
+ :color: 4294967295
102
162
  - StoneWall:
103
163
  :x: 328.0
104
164
  :y: 448.0
105
165
  :angle: 0
106
166
  :zorder: 100
167
+ :factor_x: 1
168
+ :factor_y: 1
169
+ :color: 4294967295
107
170
  - StoneWall:
108
171
  :x: 360.0
109
172
  :y: 448.0
110
173
  :angle: 0
111
174
  :zorder: 100
175
+ :factor_x: 1
176
+ :factor_y: 1
177
+ :color: 4294967295
112
178
  - StoneWall:
113
179
  :x: 392.0
114
180
  :y: 448.0
115
181
  :angle: 0
116
182
  :zorder: 100
183
+ :factor_x: 1
184
+ :factor_y: 1
185
+ :color: 4294967295
117
186
  - StoneWall:
118
187
  :x: 424.0
119
188
  :y: 448.0
120
189
  :angle: 0
121
190
  :zorder: 100
191
+ :factor_x: 1
192
+ :factor_y: 1
193
+ :color: 4294967295
122
194
  - StoneWall:
123
195
  :x: 432.0
124
196
  :y: 312.0
125
197
  :angle: 0
126
198
  :zorder: 100
199
+ :factor_x: 1
200
+ :factor_y: 1
201
+ :color: 4294967295
127
202
  - StoneWall:
128
203
  :x: 456.0
129
204
  :y: 608.0
130
205
  :angle: 0
131
206
  :zorder: 100
207
+ :factor_x: 1
208
+ :factor_y: 1
209
+ :color: 4294967295
132
210
  - StoneWall:
133
211
  :x: 424.0
134
212
  :y: 672.0
135
213
  :angle: 0
136
214
  :zorder: 100
215
+ :factor_x: 1
216
+ :factor_y: 1
217
+ :color: 4294967295
137
218
  - StoneWall:
138
219
  :x: 392.0
139
220
  :y: 672.0
140
221
  :angle: 0
141
222
  :zorder: 100
223
+ :factor_x: 1
224
+ :factor_y: 1
225
+ :color: 4294967295
142
226
  - StoneWall:
143
227
  :x: 360.0
144
228
  :y: 672.0
145
229
  :angle: 0
146
230
  :zorder: 100
231
+ :factor_x: 1
232
+ :factor_y: 1
233
+ :color: 4294967295
147
234
  - StoneWall:
148
235
  :x: 328.0
149
236
  :y: 672.0
150
237
  :angle: 0
151
238
  :zorder: 100
239
+ :factor_x: 1
240
+ :factor_y: 1
241
+ :color: 4294967295
152
242
  - StoneWall:
153
243
  :x: 176.0
154
244
  :y: 672.0
155
245
  :angle: 0
156
246
  :zorder: 100
247
+ :factor_x: 1
248
+ :factor_y: 1
249
+ :color: 4294967295
157
250
  - StoneWall:
158
251
  :x: 232.0
159
252
  :y: 448.0
160
253
  :angle: 0
161
254
  :zorder: 100
255
+ :factor_x: 1
256
+ :factor_y: 1
257
+ :color: 4294967295
162
258
  - StoneWall:
163
259
  :x: 200.0
164
260
  :y: 512.0
165
261
  :angle: 0
166
262
  :zorder: 100
263
+ :factor_x: 1
264
+ :factor_y: 1
265
+ :color: 4294967295
167
266
  - StoneWall:
168
267
  :x: 200.0
169
268
  :y: 544.0
170
269
  :angle: 0
171
270
  :zorder: 100
271
+ :factor_x: 1
272
+ :factor_y: 1
273
+ :color: 4294967295
172
274
  - StoneWall:
173
275
  :x: 200.0
174
276
  :y: 576.0
175
277
  :angle: 0
176
278
  :zorder: 100
279
+ :factor_x: 1
280
+ :factor_y: 1
281
+ :color: 4294967295
177
282
  - StoneWall:
178
283
  :x: 184.0
179
284
  :y: 616.0
180
285
  :angle: 0
181
286
  :zorder: 100
287
+ :factor_x: 1
288
+ :factor_y: 1
289
+ :color: 4294967295
182
290
  - StoneWall:
183
291
  :x: 200.0
184
292
  :y: 656.0
185
293
  :angle: 0
186
294
  :zorder: 100
295
+ :factor_x: 1
296
+ :factor_y: 1
297
+ :color: 4294967295
187
298
  - StoneWall:
188
299
  :x: 288.0
189
300
  :y: 680.0
190
301
  :angle: 0
191
302
  :zorder: 100
303
+ :factor_x: 1
304
+ :factor_y: 1
305
+ :color: 4294967295
192
306
  - StoneWall:
193
307
  :x: 72.0
194
308
  :y: 272.0
195
309
  :angle: 0
196
310
  :zorder: 100
311
+ :factor_x: 1
312
+ :factor_y: 1
313
+ :color: 4294967295
197
314
  - StoneWall:
198
315
  :x: 56.0
199
316
  :y: 256.0
200
317
  :angle: 0
201
318
  :zorder: 101
319
+ :factor_x: 1
320
+ :factor_y: 1
321
+ :color: 4294967295
202
322
  - StoneWall:
203
323
  :x: 184.0
204
324
  :y: 336.0
205
325
  :angle: 0
206
326
  :zorder: 101
327
+ :factor_x: 1
328
+ :factor_y: 1
329
+ :color: 4294967295
207
330
  - StoneWall:
208
331
  :x: 80.0
209
332
  :y: 232.0
210
333
  :angle: 0
211
334
  :zorder: 100
335
+ :factor_x: 1
336
+ :factor_y: 1
337
+ :color: 4294967295
212
338
  - StoneWall:
213
339
  :x: 488.0
214
340
  :y: 936.0
215
341
  :angle: 0
216
342
  :zorder: 100
343
+ :factor_x: 1
344
+ :factor_y: 1
345
+ :color: 4294967295
217
346
  - StoneWall:
218
347
  :x: 32.0
219
348
  :y: 248.0
220
349
  :angle: 0
221
350
  :zorder: 101
351
+ :factor_x: 1
352
+ :factor_y: 1
353
+ :color: 4294967295
222
354
  - StoneWall:
223
355
  :x: 160.0
224
356
  :y: 336.0
225
357
  :angle: 0
226
358
  :zorder: 100
359
+ :factor_x: 1
360
+ :factor_y: 1
361
+ :color: 4294967295
227
362
  - StoneWall:
228
363
  :x: 288.0
229
364
  :y: 296.0
230
365
  :angle: 0
231
366
  :zorder: 100
367
+ :factor_x: 1
368
+ :factor_y: 1
369
+ :color: 4294967295
232
370
  - StoneWall:
233
371
  :x: 320.0
234
372
  :y: 48.0
235
373
  :angle: 0
236
374
  :zorder: 100
375
+ :factor_x: 1
376
+ :factor_y: 1
377
+ :color: 4294967295
237
378
  - StoneWall:
238
379
  :x: 272.0
239
380
  :y: 72.0
240
381
  :angle: 0
241
382
  :zorder: 100
383
+ :factor_x: 1
384
+ :factor_y: 1
385
+ :color: 4294967295
242
386
  - StoneWall:
243
387
  :x: 328.0
244
388
  :y: 16.0
245
389
  :angle: 0
246
390
  :zorder: 100
391
+ :factor_x: 1
392
+ :factor_y: 1
393
+ :color: 4294967295
247
394
  - StoneWall:
248
395
  :x: 328.0
249
396
  :y: 88.0
250
397
  :angle: 0
251
398
  :zorder: 100
399
+ :factor_x: 1
400
+ :factor_y: 1
401
+ :color: 4294967295
252
402
  - StoneWall:
253
403
  :x: 360.0
254
404
  :y: 88.0
255
405
  :angle: 0
256
406
  :zorder: 100
407
+ :factor_x: 1
408
+ :factor_y: 1
409
+ :color: 4294967295
257
410
  - StoneWall:
258
411
  :x: 392.0
259
412
  :y: 88.0
260
413
  :angle: 0
261
414
  :zorder: 100
415
+ :factor_x: 1
416
+ :factor_y: 1
417
+ :color: 4294967295
262
418
  - StoneWall:
263
419
  :x: 424.0
264
420
  :y: 80.0
265
421
  :angle: 0
266
422
  :zorder: 100
423
+ :factor_x: 1
424
+ :factor_y: 1
425
+ :color: 4294967295
267
426
  - StoneWall:
268
427
  :x: 456.0
269
428
  :y: 80.0
270
429
  :angle: 0
271
430
  :zorder: 100
431
+ :factor_x: 1
432
+ :factor_y: 1
433
+ :color: 4294967295
272
434
  - StoneWall:
273
435
  :x: 272.0
274
436
  :y: 232.0
275
437
  :angle: 0
276
438
  :zorder: 100
439
+ :factor_x: 1
440
+ :factor_y: 1
441
+ :color: 4294967295
277
442
  - StoneWall:
278
443
  :x: 312.0
279
444
  :y: 232.0
280
445
  :angle: 0
281
446
  :zorder: 100
447
+ :factor_x: 1
448
+ :factor_y: 1
449
+ :color: 4294967295
282
450
  - StoneWall:
283
451
  :x: 392.0
284
452
  :y: 280.0
285
453
  :angle: 0
286
454
  :zorder: 100
455
+ :factor_x: 1
456
+ :factor_y: 1
457
+ :color: 4294967295
287
458
  - StoneWall:
288
459
  :x: 264.0
289
460
  :y: 360.0
290
461
  :angle: 0
291
462
  :zorder: 100
463
+ :factor_x: 1
464
+ :factor_y: 1
465
+ :color: 4294967295
292
466
  - StoneWall:
293
467
  :x: 488.0
294
468
  :y: 320.0
295
469
  :angle: 0
296
470
  :zorder: 100
471
+ :factor_x: 1
472
+ :factor_y: 1
473
+ :color: 4294967295
297
474
  - StoneWall:
298
475
  :x: 488.0
299
476
  :y: 88.0
300
477
  :angle: 0
301
478
  :zorder: 100
479
+ :factor_x: 1
480
+ :factor_y: 1
481
+ :color: 4294967295
302
482
  - StoneWall:
303
483
  :x: 512.0
304
484
  :y: 72.0
305
485
  :angle: 0
306
486
  :zorder: 100
487
+ :factor_x: 1
488
+ :factor_y: 1
489
+ :color: 4294967295
307
490
  - StoneWall:
308
491
  :x: 544.0
309
492
  :y: 72.0
310
493
  :angle: 0
311
494
  :zorder: 100
495
+ :factor_x: 1
496
+ :factor_y: 1
497
+ :color: 4294967295
312
498
  - StoneWall:
313
499
  :x: 520.0
314
500
  :y: 248.0
315
501
  :angle: 0
316
502
  :zorder: 100
503
+ :factor_x: 1
504
+ :factor_y: 1
505
+ :color: 4294967295
317
506
  - StoneWall:
318
507
  :x: 552.0
319
508
  :y: 232.0
320
509
  :angle: 0
321
510
  :zorder: 100
511
+ :factor_x: 1
512
+ :factor_y: 1
513
+ :color: 4294967295
322
514
  - StoneWall:
323
515
  :x: 584.0
324
516
  :y: 80.0
325
517
  :angle: 0
326
518
  :zorder: 100
519
+ :factor_x: 1
520
+ :factor_y: 1
521
+ :color: 4294967295
327
522
  - StoneWall:
328
523
  :x: 608.0
329
524
  :y: 80.0
330
525
  :angle: 0
331
526
  :zorder: 100
527
+ :factor_x: 1
528
+ :factor_y: 1
529
+ :color: 4294967295
332
530
  - StoneWall:
333
531
  :x: 664.0
334
532
  :y: 88.0
335
533
  :angle: 0
336
534
  :zorder: 100
535
+ :factor_x: 1
536
+ :factor_y: 1
537
+ :color: 4294967295
337
538
  - StoneWall:
338
539
  :x: 656.0
339
540
  :y: 128.0
340
541
  :angle: 0
341
542
  :zorder: 100
543
+ :factor_x: 1
544
+ :factor_y: 1
545
+ :color: 4294967295
342
546
  - StoneWall:
343
547
  :x: 680.0
344
548
  :y: 208.0
345
549
  :angle: 0
346
550
  :zorder: 100
551
+ :factor_x: 1
552
+ :factor_y: 1
553
+ :color: 4294967295
347
554
  - StoneWall:
348
555
  :x: 680.0
349
556
  :y: 240.0
350
557
  :angle: 0
351
558
  :zorder: 100
559
+ :factor_x: 1
560
+ :factor_y: 1
561
+ :color: 4294967295
352
562
  - StoneWall:
353
563
  :x: 552.0
354
564
  :y: 264.0
355
565
  :angle: 0
356
566
  :zorder: 100
567
+ :factor_x: 1
568
+ :factor_y: 1
569
+ :color: 4294967295
357
570
  - StoneWall:
358
571
  :x: 680.0
359
572
  :y: 272.0
360
573
  :angle: 0
361
574
  :zorder: 100
575
+ :factor_x: 1
576
+ :factor_y: 1
577
+ :color: 4294967295
362
578
  - StoneWall:
363
579
  :x: 512.0
364
580
  :y: 288.0
365
581
  :angle: 0
366
582
  :zorder: 100
583
+ :factor_x: 1
584
+ :factor_y: 1
585
+ :color: 4294967295
367
586
  - StoneWall:
368
587
  :x: 680.0
369
588
  :y: 304.0
370
589
  :angle: 0
371
590
  :zorder: 100
591
+ :factor_x: 1
592
+ :factor_y: 1
593
+ :color: 4294967295
372
594
  - StoneWall:
373
595
  :x: 680.0
374
596
  :y: 336.0
375
597
  :angle: 0
376
598
  :zorder: 100
599
+ :factor_x: 1
600
+ :factor_y: 1
601
+ :color: 4294967295
377
602
  - StoneWall:
378
603
  :x: 520.0
379
604
  :y: 328.0
380
605
  :angle: 0
381
606
  :zorder: 100
607
+ :factor_x: 1
608
+ :factor_y: 1
609
+ :color: 4294967295
382
610
  - StoneWall:
383
611
  :x: 520.0
384
612
  :y: 368.0
385
613
  :angle: 0
386
614
  :zorder: 100
615
+ :factor_x: 1
616
+ :factor_y: 1
617
+ :color: 4294967295
387
618
  - StoneWall:
388
619
  :x: 528.0
389
620
  :y: 384.0
390
621
  :angle: 0
391
622
  :zorder: 100
623
+ :factor_x: 1
624
+ :factor_y: 1
625
+ :color: 4294967295
392
626
  - StoneWall:
393
627
  :x: 520.0
394
628
  :y: 416.0
395
629
  :angle: 0
396
630
  :zorder: 100
631
+ :factor_x: 1
632
+ :factor_y: 1
633
+ :color: 4294967295
397
634
  - StoneWall:
398
635
  :x: 520.0
399
636
  :y: 448.0
400
637
  :angle: 0
401
638
  :zorder: 100
639
+ :factor_x: 1
640
+ :factor_y: 1
641
+ :color: 4294967295
402
642
  - StoneWall:
403
643
  :x: 528.0
404
644
  :y: 496.0
405
645
  :angle: 0
406
646
  :zorder: 100
647
+ :factor_x: 1
648
+ :factor_y: 1
649
+ :color: 4294967295
407
650
  - StoneWall:
408
651
  :x: 512.0
409
652
  :y: 472.0
410
653
  :angle: 0
411
654
  :zorder: 100
655
+ :factor_x: 1
656
+ :factor_y: 1
657
+ :color: 4294967295
412
658
  - StoneWall:
413
659
  :x: 520.0
414
660
  :y: 520.0
415
661
  :angle: 0
416
662
  :zorder: 100
663
+ :factor_x: 1
664
+ :factor_y: 1
665
+ :color: 4294967295
417
666
  - StoneWall:
418
667
  :x: 680.0
419
668
  :y: 368.0
420
669
  :angle: 0
421
670
  :zorder: 100
671
+ :factor_x: 1
672
+ :factor_y: 1
673
+ :color: 4294967295
422
674
  - StoneWall:
423
675
  :x: 648.0
424
676
  :y: 400.0
425
677
  :angle: 0
426
678
  :zorder: 100
679
+ :factor_x: 1
680
+ :factor_y: 1
681
+ :color: 4294967295
427
682
  - StoneWall:
428
683
  :x: 584.0
429
684
  :y: 576.0
430
685
  :angle: 0
431
686
  :zorder: 100
687
+ :factor_x: 1
688
+ :factor_y: 1
689
+ :color: 4294967295
432
690
  - StoneWall:
433
691
  :x: 624.0
434
692
  :y: 584.0
435
693
  :angle: 0
436
694
  :zorder: 100
695
+ :factor_x: 1
696
+ :factor_y: 1
697
+ :color: 4294967295
437
698
  - StoneWall:
438
699
  :x: 648.0
439
700
  :y: 584.0
440
701
  :angle: 0
441
702
  :zorder: 100
703
+ :factor_x: 1
704
+ :factor_y: 1
705
+ :color: 4294967295
442
706
  - StoneWall:
443
707
  :x: 672.0
444
708
  :y: 584.0
445
709
  :angle: 0
446
710
  :zorder: 100
711
+ :factor_x: 1
712
+ :factor_y: 1
713
+ :color: 4294967295
447
714
  - StoneWall:
448
715
  :x: 688.0
449
716
  :y: 576.0
450
717
  :angle: 0
451
718
  :zorder: 100
719
+ :factor_x: 1
720
+ :factor_y: 1
721
+ :color: 4294967295
452
722
  - StoneWall:
453
723
  :x: 744.0
454
724
  :y: 552.0
455
725
  :angle: 0
456
726
  :zorder: 100
727
+ :factor_x: 1
728
+ :factor_y: 1
729
+ :color: 4294967295
457
730
  - StoneWall:
458
731
  :x: 776.0
459
732
  :y: 584.0
460
733
  :angle: 0
461
734
  :zorder: 100
735
+ :factor_x: 1
736
+ :factor_y: 1
737
+ :color: 4294967295
462
738
  - StoneWall:
463
739
  :x: 808.0
464
740
  :y: 584.0
465
741
  :angle: 0
466
742
  :zorder: 100
743
+ :factor_x: 1
744
+ :factor_y: 1
745
+ :color: 4294967295
467
746
  - StoneWall:
468
747
  :x: 840.0
469
748
  :y: 584.0
470
749
  :angle: 0
471
750
  :zorder: 100
751
+ :factor_x: 1
752
+ :factor_y: 1
753
+ :color: 4294967295
472
754
  - StoneWall:
473
755
  :x: 888.0
474
756
  :y: 584.0
475
757
  :angle: 0
476
758
  :zorder: 100
759
+ :factor_x: 1
760
+ :factor_y: 1
761
+ :color: 4294967295
477
762
  - StoneWall:
478
763
  :x: 912.0
479
764
  :y: 576.0
480
765
  :angle: 0
481
766
  :zorder: 100
767
+ :factor_x: 1
768
+ :factor_y: 1
769
+ :color: 4294967295
482
770
  - StoneWall:
483
771
  :x: 936.0
484
772
  :y: 584.0
485
773
  :angle: 0
486
774
  :zorder: 100
775
+ :factor_x: 1
776
+ :factor_y: 1
777
+ :color: 4294967295
487
778
  - StoneWall:
488
779
  :x: 984.0
489
780
  :y: 584.0
490
781
  :angle: 0
491
782
  :zorder: 100
783
+ :factor_x: 1
784
+ :factor_y: 1
785
+ :color: 4294967295
492
786
  - StoneWall:
493
787
  :x: 1008.0
494
788
  :y: 592.0
495
789
  :angle: 0
496
790
  :zorder: 100
791
+ :factor_x: 1
792
+ :factor_y: 1
793
+ :color: 4294967295
497
794
  - StoneWall:
498
795
  :x: 1048.0
499
796
  :y: 600.0
500
797
  :angle: 0
501
798
  :zorder: 100
799
+ :factor_x: 1
800
+ :factor_y: 1
801
+ :color: 4294967295
502
802
  - StoneWall:
503
803
  :x: 680.0
504
804
  :y: 400.0
505
805
  :angle: 0
506
806
  :zorder: 100
807
+ :factor_x: 1
808
+ :factor_y: 1
809
+ :color: 4294967295
507
810
  - StoneWall:
508
811
  :x: 712.0
509
812
  :y: 400.0
510
813
  :angle: 0
511
814
  :zorder: 100
815
+ :factor_x: 1
816
+ :factor_y: 1
817
+ :color: 4294967295
512
818
  - StoneWall:
513
819
  :x: 744.0
514
820
  :y: 400.0
515
821
  :angle: 0
516
822
  :zorder: 100
823
+ :factor_x: 1
824
+ :factor_y: 1
825
+ :color: 4294967295
517
826
  - StoneWall:
518
827
  :x: 776.0
519
828
  :y: 400.0
520
829
  :angle: 0
521
830
  :zorder: 100
831
+ :factor_x: 1
832
+ :factor_y: 1
833
+ :color: 4294967295
522
834
  - StoneWall:
523
835
  :x: 808.0
524
836
  :y: 400.0
525
837
  :angle: 0
526
838
  :zorder: 100
839
+ :factor_x: 1
840
+ :factor_y: 1
841
+ :color: 4294967295
527
842
  - StoneWall:
528
843
  :x: 1072.0
529
844
  :y: 600.0
530
845
  :angle: 0
531
846
  :zorder: 100
847
+ :factor_x: 1
848
+ :factor_y: 1
849
+ :color: 4294967295
532
850
  - StoneWall:
533
851
  :x: 360.0
534
852
  :y: 232.0
535
853
  :angle: 0
536
854
  :zorder: 100
855
+ :factor_x: 1
856
+ :factor_y: 1
857
+ :color: 4294967295
537
858
  - StoneWall:
538
859
  :x: 840.0
539
860
  :y: 400.0
540
861
  :angle: 0
541
862
  :zorder: 100
863
+ :factor_x: 1
864
+ :factor_y: 1
865
+ :color: 4294967295
542
866
  - StoneWall:
543
867
  :x: 872.0
544
868
  :y: 400.0
545
869
  :angle: 0
546
870
  :zorder: 100
871
+ :factor_x: 1
872
+ :factor_y: 1
873
+ :color: 4294967295
547
874
  - StoneWall:
548
875
  :x: 904.0
549
876
  :y: 400.0
550
877
  :angle: 0
551
878
  :zorder: 100
879
+ :factor_x: 1
880
+ :factor_y: 1
881
+ :color: 4294967295
552
882
  - StoneWall:
553
883
  :x: 936.0
554
884
  :y: 432.0
555
885
  :angle: 0
556
886
  :zorder: 100
887
+ :factor_x: 1
888
+ :factor_y: 1
889
+ :color: 4294967295
557
890
  - StoneWall:
558
891
  :x: 968.0
559
892
  :y: 400.0
560
893
  :angle: 0
561
894
  :zorder: 100
895
+ :factor_x: 1
896
+ :factor_y: 1
897
+ :color: 4294967295
562
898
  - StoneWall:
563
899
  :x: 936.0
564
900
  :y: 368.0
565
901
  :angle: 0
566
902
  :zorder: 100
903
+ :factor_x: 1
904
+ :factor_y: 1
905
+ :color: 4294967295
567
906
  - StoneWall:
568
907
  :x: 744.0
569
908
  :y: 584.0
570
909
  :angle: 0
571
910
  :zorder: 100
911
+ :factor_x: 1
912
+ :factor_y: 1
913
+ :color: 4294967295
572
914
  - StoneWall:
573
915
  :x: 776.0
574
916
  :y: 616.0
575
917
  :angle: 0
576
918
  :zorder: 100
919
+ :factor_x: 1
920
+ :factor_y: 1
921
+ :color: 4294967295
577
922
  - StoneWall:
578
923
  :x: 784.0
579
924
  :y: 648.0
580
925
  :angle: 0
581
926
  :zorder: 100
927
+ :factor_x: 1
928
+ :factor_y: 1
929
+ :color: 4294967295
582
930
  - StoneWall:
583
931
  :x: 776.0
584
932
  :y: 680.0
585
933
  :angle: 0
586
934
  :zorder: 100
935
+ :factor_x: 1
936
+ :factor_y: 1
937
+ :color: 4294967295
587
938
  - StoneWall:
588
939
  :x: 784.0
589
940
  :y: 712.0
590
941
  :angle: 0
591
942
  :zorder: 100
943
+ :factor_x: 1
944
+ :factor_y: 1
945
+ :color: 4294967295
592
946
  - StoneWall:
593
947
  :x: 744.0
594
948
  :y: 744.0
595
949
  :angle: 0
596
950
  :zorder: 100
951
+ :factor_x: 1
952
+ :factor_y: 1
953
+ :color: 4294967295
597
954
  - StoneWall:
598
955
  :x: 808.0
599
956
  :y: 720.0
600
957
  :angle: 0
601
958
  :zorder: 100
959
+ :factor_x: 1
960
+ :factor_y: 1
961
+ :color: 4294967295
602
962
  - StoneWall:
603
963
  :x: 824.0
604
964
  :y: 744.0
605
965
  :angle: 0
606
966
  :zorder: 100
967
+ :factor_x: 1
968
+ :factor_y: 1
969
+ :color: 4294967295
607
970
  - Star:
608
971
  :x: 1093.41111529021
609
972
  :y: 5.51124415160293
610
973
  :angle: 0
611
974
  :zorder: 100
975
+ :factor_x: 1
976
+ :factor_y: 1
977
+ :color: 4282440878
612
978
  - Star:
613
979
  :x: 1021.24698547035
614
980
  :y: 233.697577016662
615
981
  :angle: 0
616
982
  :zorder: 100
983
+ :factor_x: 1
984
+ :factor_y: 1
985
+ :color: 4291082941
617
986
  - Star:
618
987
  :x: 1501.26322692051
619
988
  :y: 521.751991504935
620
989
  :angle: 0
621
990
  :zorder: 100
991
+ :factor_x: 1
992
+ :factor_y: 1
993
+ :color: 4287321129
622
994
  - Star:
623
995
  :x: 1036.07940582127
624
996
  :y: 1077.39024843889
625
997
  :angle: 0
626
998
  :zorder: 100
999
+ :factor_x: 1
1000
+ :factor_y: 1
1001
+ :color: 4292962121
627
1002
  - Star:
628
1003
  :x: 88.0
629
1004
  :y: 920.0
630
1005
  :angle: 0
631
1006
  :zorder: 100
1007
+ :factor_x: 1
1008
+ :factor_y: 1
1009
+ :color: 4291813365
632
1010
  - Star:
633
1011
  :x: 976.0
634
1012
  :y: 896.0
635
1013
  :angle: 0
636
1014
  :zorder: 100
1015
+ :factor_x: 1
1016
+ :factor_y: 1
1017
+ :color: 4286083761
637
1018
  - Star:
638
1019
  :x: 193.633994281044
639
1020
  :y: 1104.56305326903
640
1021
  :angle: 0
641
1022
  :zorder: 100
1023
+ :factor_x: 1
1024
+ :factor_y: 1
1025
+ :color: 4292468666
642
1026
  - Star:
643
1027
  :x: 1328.51127397829
644
1028
  :y: 130.436347265118
645
1029
  :angle: 0
646
1030
  :zorder: 100
1031
+ :factor_x: 1
1032
+ :factor_y: 1
1033
+ :color: 4289286295
647
1034
  - Star:
648
1035
  :x: 850.231826004726
649
1036
  :y: 714.517551818006
650
1037
  :angle: 0
651
1038
  :zorder: 100
1039
+ :factor_x: 1
1040
+ :factor_y: 1
1041
+ :color: 4287297423
652
1042
  - Star:
653
1043
  :x: 987.983860738842
654
1044
  :y: 1088.82089083583
655
1045
  :angle: 0
656
1046
  :zorder: 100
1047
+ :factor_x: 1
1048
+ :factor_y: 1
1049
+ :color: 4292131257
657
1050
  - Star:
658
1051
  :x: 1104.0
659
1052
  :y: 1024.0
660
1053
  :angle: 0
661
1054
  :zorder: 100
1055
+ :factor_x: 1
1056
+ :factor_y: 1
1057
+ :color: 4288041566
662
1058
  - Star:
663
1059
  :x: 1471.78511833082
664
1060
  :y: 251.377538642698
665
1061
  :angle: 0
666
1062
  :zorder: 100
1063
+ :factor_x: 1
1064
+ :factor_y: 1
1065
+ :color: 4285005534
667
1066
  - Star:
668
1067
  :x: 1106.18505509065
669
1068
  :y: 63.8445958640463
670
1069
  :angle: 0
671
1070
  :zorder: 100
1071
+ :factor_x: 1
1072
+ :factor_y: 1
1073
+ :color: 4283489684
672
1074
  - Star:
673
1075
  :x: 480.0
674
1076
  :y: 24.0
675
1077
  :angle: 0
676
1078
  :zorder: 100
1079
+ :factor_x: 1
1080
+ :factor_y: 1
1081
+ :color: 4282410862
677
1082
  - Star:
678
1083
  :x: 1383.07846779147
679
1084
  :y: 1099.94904037489
680
1085
  :angle: 0
681
1086
  :zorder: 100
1087
+ :factor_x: 1
1088
+ :factor_y: 1
1089
+ :color: 4293710310
682
1090
  - Star:
683
1091
  :x: 1136.91212394409
684
1092
  :y: 330.048667889083
685
1093
  :angle: 0
686
1094
  :zorder: 100
1095
+ :factor_x: 1
1096
+ :factor_y: 1
1097
+ :color: 4292323247
687
1098
  - Star:
688
1099
  :x: 143.727252338061
689
1100
  :y: 1074.3178815527
690
1101
  :angle: 0
691
1102
  :zorder: 100
1103
+ :factor_x: 1
1104
+ :factor_y: 1
1105
+ :color: 4291021978
692
1106
  - StoneWall:
693
1107
  :x: 264.0
694
1108
  :y: 496.0
695
1109
  :angle: 0
696
1110
  :zorder: 103
1111
+ :factor_x: 1
1112
+ :factor_y: 1
1113
+ :color: 4294967295
697
1114
  - StoneWall:
698
1115
  :x: 296.0
699
1116
  :y: 480.0
700
1117
  :angle: 0
701
1118
  :zorder: 100
1119
+ :factor_x: 1
1120
+ :factor_y: 1
1121
+ :color: 4294967295
702
1122
  - StoneWall:
703
1123
  :x: 328.0
704
1124
  :y: 480.0
705
1125
  :angle: 0
706
1126
  :zorder: 100
1127
+ :factor_x: 1
1128
+ :factor_y: 1
1129
+ :color: 4294967295
707
1130
  - StoneWall:
708
1131
  :x: 360.0
709
1132
  :y: 480.0
710
1133
  :angle: 0
711
1134
  :zorder: 100
1135
+ :factor_x: 1
1136
+ :factor_y: 1
1137
+ :color: 4294967295
712
1138
  - StoneWall:
713
1139
  :x: 392.0
714
1140
  :y: 480.0
715
1141
  :angle: 0
716
1142
  :zorder: 100
1143
+ :factor_x: 1
1144
+ :factor_y: 1
1145
+ :color: 4294967295
717
1146
  - StoneWall:
718
1147
  :x: 424.0
719
1148
  :y: 480.0
720
1149
  :angle: 0
721
1150
  :zorder: 100
1151
+ :factor_x: 1
1152
+ :factor_y: 1
1153
+ :color: 4294967295
722
1154
  - StoneWall:
723
1155
  :x: 424.0
724
1156
  :y: 512.0
725
1157
  :angle: 0
726
1158
  :zorder: 100
1159
+ :factor_x: 1
1160
+ :factor_y: 1
1161
+ :color: 4294967295
727
1162
  - StoneWall:
728
1163
  :x: 424.0
729
1164
  :y: 608.0
730
1165
  :angle: 0
731
1166
  :zorder: 100
1167
+ :factor_x: 1
1168
+ :factor_y: 1
1169
+ :color: 4294967295
732
1170
  - StoneWall:
733
1171
  :x: 424.0
734
1172
  :y: 640.0
735
1173
  :angle: 0
736
1174
  :zorder: 100
1175
+ :factor_x: 1
1176
+ :factor_y: 1
1177
+ :color: 4294967295
737
1178
  - StoneWall:
738
1179
  :x: 392.0
739
1180
  :y: 640.0
740
1181
  :angle: 0
741
1182
  :zorder: 100
1183
+ :factor_x: 1
1184
+ :factor_y: 1
1185
+ :color: 4294967295
742
1186
  - StoneWall:
743
1187
  :x: 360.0
744
1188
  :y: 640.0
745
1189
  :angle: 0
746
1190
  :zorder: 100
1191
+ :factor_x: 1
1192
+ :factor_y: 1
1193
+ :color: 4294967295
747
1194
  - StoneWall:
748
1195
  :x: 328.0
749
1196
  :y: 640.0
750
1197
  :angle: 0
751
1198
  :zorder: 100
1199
+ :factor_x: 1
1200
+ :factor_y: 1
1201
+ :color: 4294967295
752
1202
  - StoneWall:
753
1203
  :x: 296.0
754
1204
  :y: 640.0
755
1205
  :angle: 0
756
1206
  :zorder: 100
1207
+ :factor_x: 1
1208
+ :factor_y: 1
1209
+ :color: 4294967295
757
1210
  - StoneWall:
758
1211
  :x: 232.0
759
1212
  :y: 480.0
760
1213
  :angle: 0
761
1214
  :zorder: 100
1215
+ :factor_x: 1
1216
+ :factor_y: 1
1217
+ :color: 4294967295
762
1218
  - StoneWall:
763
1219
  :x: 200.0
764
1220
  :y: 488.0
765
1221
  :angle: 0
766
1222
  :zorder: 100
1223
+ :factor_x: 1
1224
+ :factor_y: 1
1225
+ :color: 4294967295
767
1226
  - StoneWall:
768
1227
  :x: 232.0
769
1228
  :y: 544.0
770
1229
  :angle: 0
771
1230
  :zorder: 100
1231
+ :factor_x: 1
1232
+ :factor_y: 1
1233
+ :color: 4294967295
772
1234
  - StoneWall:
773
1235
  :x: 232.0
774
1236
  :y: 576.0
775
1237
  :angle: 0
776
1238
  :zorder: 100
1239
+ :factor_x: 1
1240
+ :factor_y: 1
1241
+ :color: 4294967295
777
1242
  - StoneWall:
778
1243
  :x: 208.0
779
1244
  :y: 608.0
780
1245
  :angle: 0
781
1246
  :zorder: 100
1247
+ :factor_x: 1
1248
+ :factor_y: 1
1249
+ :color: 4294967295
782
1250
  - StoneWall:
783
1251
  :x: 248.0
784
1252
  :y: 704.0
785
1253
  :angle: 0
786
1254
  :zorder: 100
1255
+ :factor_x: 1
1256
+ :factor_y: 1
1257
+ :color: 4294967295
787
1258
  - StoneWall:
788
1259
  :x: 264.0
789
1260
  :y: 680.0
790
1261
  :angle: 0
791
1262
  :zorder: 100
1263
+ :factor_x: 1
1264
+ :factor_y: 1
1265
+ :color: 4294967295
792
1266
  - StoneWall:
793
1267
  :x: 240.0
794
1268
  :y: 512.0
795
1269
  :angle: 0
796
1270
  :zorder: 101
1271
+ :factor_x: 1
1272
+ :factor_y: 1
1273
+ :color: 4294967295
797
1274
  - StoneWall:
798
1275
  :x: 80.0
799
1276
  :y: 216.0
800
1277
  :angle: 0
801
1278
  :zorder: 100
1279
+ :factor_x: 1
1280
+ :factor_y: 1
1281
+ :color: 4294967295
802
1282
  - StoneWall:
803
1283
  :x: 232.0
804
1284
  :y: 208.0
805
1285
  :angle: 0
806
1286
  :zorder: 100
1287
+ :factor_x: 1
1288
+ :factor_y: 1
1289
+ :color: 4294967295
807
1290
  - StoneWall:
808
1291
  :x: 248.0
809
1292
  :y: 208.0
810
1293
  :angle: 0
811
1294
  :zorder: 97
1295
+ :factor_x: 1
1296
+ :factor_y: 1
1297
+ :color: 4294967295
812
1298
  - StoneWall:
813
1299
  :x: 16.0
814
1300
  :y: 216.0
815
1301
  :angle: 0
816
1302
  :zorder: 100
1303
+ :factor_x: 1
1304
+ :factor_y: 1
1305
+ :color: 4294967295
817
1306
  - StoneWall:
818
1307
  :x: 240.0
819
1308
  :y: 232.0
820
1309
  :angle: 0
821
1310
  :zorder: 100
1311
+ :factor_x: 1
1312
+ :factor_y: 1
1313
+ :color: 4294967295
822
1314
  - StoneWall:
823
1315
  :x: 144.0
824
1316
  :y: 352.0
825
1317
  :angle: 0
826
1318
  :zorder: 100
1319
+ :factor_x: 1
1320
+ :factor_y: 1
1321
+ :color: 4294967295
827
1322
  - StoneWall:
828
1323
  :x: 296.0
829
1324
  :y: 112.0
830
1325
  :angle: 0
831
1326
  :zorder: 100
1327
+ :factor_x: 1
1328
+ :factor_y: 1
1329
+ :color: 4294967295
832
1330
  - StoneWall:
833
1331
  :x: 296.0
834
1332
  :y: 48.0
835
1333
  :angle: 0
836
1334
  :zorder: 100
1335
+ :factor_x: 1
1336
+ :factor_y: 1
1337
+ :color: 4294967295
837
1338
  - StoneWall:
838
1339
  :x: 296.0
839
1340
  :y: 80.0
840
1341
  :angle: 0
841
1342
  :zorder: 100
1343
+ :factor_x: 1
1344
+ :factor_y: 1
1345
+ :color: 4294967295
842
1346
  - StoneWall:
843
1347
  :x: 296.0
844
1348
  :y: 16.0
845
1349
  :angle: 0
846
1350
  :zorder: 100
1351
+ :factor_x: 1
1352
+ :factor_y: 1
1353
+ :color: 4294967295
847
1354
  - StoneWall:
848
1355
  :x: 328.0
849
1356
  :y: 112.0
850
1357
  :angle: 0
851
1358
  :zorder: 100
1359
+ :factor_x: 1
1360
+ :factor_y: 1
1361
+ :color: 4294967295
852
1362
  - StoneWall:
853
1363
  :x: 360.0
854
1364
  :y: 112.0
855
1365
  :angle: 0
856
1366
  :zorder: 100
1367
+ :factor_x: 1
1368
+ :factor_y: 1
1369
+ :color: 4294967295
857
1370
  - StoneWall:
858
1371
  :x: 392.0
859
1372
  :y: 112.0
860
1373
  :angle: 0
861
1374
  :zorder: 100
1375
+ :factor_x: 1
1376
+ :factor_y: 1
1377
+ :color: 4294967295
862
1378
  - StoneWall:
863
1379
  :x: 424.0
864
1380
  :y: 112.0
865
1381
  :angle: 0
866
1382
  :zorder: 100
1383
+ :factor_x: 1
1384
+ :factor_y: 1
1385
+ :color: 4294967295
867
1386
  - StoneWall:
868
1387
  :x: 456.0
869
1388
  :y: 112.0
870
1389
  :angle: 0
871
1390
  :zorder: 100
1391
+ :factor_x: 1
1392
+ :factor_y: 1
1393
+ :color: 4294967295
872
1394
  - StoneWall:
873
1395
  :x: 344.0
874
1396
  :y: 208.0
875
1397
  :angle: 0
876
1398
  :zorder: 100
1399
+ :factor_x: 1
1400
+ :factor_y: 1
1401
+ :color: 4294967295
877
1402
  - StoneWall:
878
1403
  :x: 384.0
879
1404
  :y: 216.0
880
1405
  :angle: 0
881
1406
  :zorder: 100
1407
+ :factor_x: 1
1408
+ :factor_y: 1
1409
+ :color: 4294967295
882
1410
  - StoneWall:
883
1411
  :x: 336.0
884
1412
  :y: 288.0
885
1413
  :angle: 0
886
1414
  :zorder: 100
1415
+ :factor_x: 1
1416
+ :factor_y: 1
1417
+ :color: 4294967295
887
1418
  - StoneWall:
888
1419
  :x: 424.0
889
1420
  :y: 248.0
890
1421
  :angle: 0
891
1422
  :zorder: 100
1423
+ :factor_x: 1
1424
+ :factor_y: 1
1425
+ :color: 4294967295
892
1426
  - StoneWall:
893
1427
  :x: 488.0
894
1428
  :y: 256.0
895
1429
  :angle: 0
896
1430
  :zorder: 100
1431
+ :factor_x: 1
1432
+ :factor_y: 1
1433
+ :color: 4294967295
897
1434
  - StoneWall:
898
1435
  :x: 488.0
899
1436
  :y: 112.0
900
1437
  :angle: 0
901
1438
  :zorder: 100
1439
+ :factor_x: 1
1440
+ :factor_y: 1
1441
+ :color: 4294967295
902
1442
  - StoneWall:
903
1443
  :x: 520.0
904
1444
  :y: 112.0
905
1445
  :angle: 0
906
1446
  :zorder: 100
1447
+ :factor_x: 1
1448
+ :factor_y: 1
1449
+ :color: 4294967295
907
1450
  - StoneWall:
908
1451
  :x: 552.0
909
1452
  :y: 112.0
910
1453
  :angle: 0
911
1454
  :zorder: 100
1455
+ :factor_x: 1
1456
+ :factor_y: 1
1457
+ :color: 4294967295
912
1458
  - StoneWall:
913
1459
  :x: 496.0
914
1460
  :y: 208.0
915
1461
  :angle: 0
916
1462
  :zorder: 100
1463
+ :factor_x: 1
1464
+ :factor_y: 1
1465
+ :color: 4294967295
917
1466
  - StoneWall:
918
1467
  :x: 552.0
919
1468
  :y: 232.0
920
1469
  :angle: 0
921
1470
  :zorder: 100
1471
+ :factor_x: 1
1472
+ :factor_y: 1
1473
+ :color: 4294967295
922
1474
  - StoneWall:
923
1475
  :x: 584.0
924
1476
  :y: 112.0
925
1477
  :angle: 0
926
1478
  :zorder: 100
1479
+ :factor_x: 1
1480
+ :factor_y: 1
1481
+ :color: 4294967295
927
1482
  - StoneWall:
928
1483
  :x: 616.0
929
1484
  :y: 112.0
930
1485
  :angle: 0
931
1486
  :zorder: 100
1487
+ :factor_x: 1
1488
+ :factor_y: 1
1489
+ :color: 4294967295
932
1490
  - StoneWall:
933
1491
  :x: 648.0
934
1492
  :y: 112.0
935
1493
  :angle: 0
936
1494
  :zorder: 100
1495
+ :factor_x: 1
1496
+ :factor_y: 1
1497
+ :color: 4294967295
937
1498
  - StoneWall:
938
1499
  :x: 648.0
939
1500
  :y: 144.0
940
1501
  :angle: 0
941
1502
  :zorder: 100
1503
+ :factor_x: 1
1504
+ :factor_y: 1
1505
+ :color: 4294967295
942
1506
  - StoneWall:
943
1507
  :x: 648.0
944
1508
  :y: 208.0
945
1509
  :angle: 0
946
1510
  :zorder: 100
1511
+ :factor_x: 1
1512
+ :factor_y: 1
1513
+ :color: 4294967295
947
1514
  - StoneWall:
948
1515
  :x: 648.0
949
1516
  :y: 240.0
950
1517
  :angle: 0
951
1518
  :zorder: 100
1519
+ :factor_x: 1
1520
+ :factor_y: 1
1521
+ :color: 4294967295
952
1522
  - StoneWall:
953
1523
  :x: 552.0
954
1524
  :y: 264.0
955
1525
  :angle: 0
956
1526
  :zorder: 100
1527
+ :factor_x: 1
1528
+ :factor_y: 1
1529
+ :color: 4294967295
957
1530
  - StoneWall:
958
1531
  :x: 648.0
959
1532
  :y: 272.0
960
1533
  :angle: 0
961
1534
  :zorder: 100
1535
+ :factor_x: 1
1536
+ :factor_y: 1
1537
+ :color: 4294967295
962
1538
  - StoneWall:
963
1539
  :x: 552.0
964
1540
  :y: 296.0
965
1541
  :angle: 0
966
1542
  :zorder: 100
1543
+ :factor_x: 1
1544
+ :factor_y: 1
1545
+ :color: 4294967295
967
1546
  - StoneWall:
968
1547
  :x: 648.0
969
1548
  :y: 304.0
970
1549
  :angle: 0
971
1550
  :zorder: 100
1551
+ :factor_x: 1
1552
+ :factor_y: 1
1553
+ :color: 4294967295
972
1554
  - StoneWall:
973
1555
  :x: 648.0
974
1556
  :y: 336.0
975
1557
  :angle: 0
976
1558
  :zorder: 100
1559
+ :factor_x: 1
1560
+ :factor_y: 1
1561
+ :color: 4294967295
977
1562
  - StoneWall:
978
1563
  :x: 552.0
979
1564
  :y: 328.0
980
1565
  :angle: 0
981
1566
  :zorder: 100
1567
+ :factor_x: 1
1568
+ :factor_y: 1
1569
+ :color: 4294967295
982
1570
  - StoneWall:
983
1571
  :x: 552.0
984
1572
  :y: 360.0
985
1573
  :angle: 0
986
1574
  :zorder: 100
1575
+ :factor_x: 1
1576
+ :factor_y: 1
1577
+ :color: 4294967295
987
1578
  - StoneWall:
988
1579
  :x: 552.0
989
1580
  :y: 392.0
990
1581
  :angle: 0
991
1582
  :zorder: 100
1583
+ :factor_x: 1
1584
+ :factor_y: 1
1585
+ :color: 4294967295
992
1586
  - StoneWall:
993
1587
  :x: 552.0
994
1588
  :y: 424.0
995
1589
  :angle: 0
996
1590
  :zorder: 100
1591
+ :factor_x: 1
1592
+ :factor_y: 1
1593
+ :color: 4294967295
997
1594
  - StoneWall:
998
1595
  :x: 552.0
999
1596
  :y: 456.0
1000
1597
  :angle: 0
1001
1598
  :zorder: 100
1599
+ :factor_x: 1
1600
+ :factor_y: 1
1601
+ :color: 4294967295
1002
1602
  - StoneWall:
1003
1603
  :x: 552.0
1004
1604
  :y: 488.0
1005
1605
  :angle: 0
1006
1606
  :zorder: 100
1607
+ :factor_x: 1
1608
+ :factor_y: 1
1609
+ :color: 4294967295
1007
1610
  - StoneWall:
1008
1611
  :x: 552.0
1009
1612
  :y: 520.0
1010
1613
  :angle: 0
1011
1614
  :zorder: 100
1615
+ :factor_x: 1
1616
+ :factor_y: 1
1617
+ :color: 4294967295
1012
1618
  - StoneWall:
1013
1619
  :x: 544.0
1014
1620
  :y: 576.0
1015
1621
  :angle: 0
1016
1622
  :zorder: 100
1623
+ :factor_x: 1
1624
+ :factor_y: 1
1625
+ :color: 4294967295
1017
1626
  - StoneWall:
1018
1627
  :x: 648.0
1019
1628
  :y: 368.0
1020
1629
  :angle: 0
1021
1630
  :zorder: 100
1631
+ :factor_x: 1
1632
+ :factor_y: 1
1633
+ :color: 4294967295
1022
1634
  - StoneWall:
1023
1635
  :x: 648.0
1024
1636
  :y: 400.0
1025
1637
  :angle: 0
1026
1638
  :zorder: 100
1639
+ :factor_x: 1
1640
+ :factor_y: 1
1641
+ :color: 4294967295
1027
1642
  - StoneWall:
1028
1643
  :x: 584.0
1029
1644
  :y: 552.0
1030
1645
  :angle: 0
1031
1646
  :zorder: 100
1647
+ :factor_x: 1
1648
+ :factor_y: 1
1649
+ :color: 4294967295
1032
1650
  - StoneWall:
1033
1651
  :x: 616.0
1034
1652
  :y: 552.0
1035
1653
  :angle: 0
1036
1654
  :zorder: 100
1655
+ :factor_x: 1
1656
+ :factor_y: 1
1657
+ :color: 4294967295
1037
1658
  - StoneWall:
1038
1659
  :x: 648.0
1039
1660
  :y: 552.0
1040
1661
  :angle: 0
1041
1662
  :zorder: 100
1663
+ :factor_x: 1
1664
+ :factor_y: 1
1665
+ :color: 4294967295
1042
1666
  - StoneWall:
1043
1667
  :x: 680.0
1044
1668
  :y: 552.0
1045
1669
  :angle: 0
1046
1670
  :zorder: 100
1671
+ :factor_x: 1
1672
+ :factor_y: 1
1673
+ :color: 4294967295
1047
1674
  - StoneWall:
1048
1675
  :x: 712.0
1049
1676
  :y: 552.0
1050
1677
  :angle: 0
1051
1678
  :zorder: 100
1679
+ :factor_x: 1
1680
+ :factor_y: 1
1681
+ :color: 4294967295
1052
1682
  - StoneWall:
1053
1683
  :x: 744.0
1054
1684
  :y: 552.0
1055
1685
  :angle: 0
1056
1686
  :zorder: 100
1687
+ :factor_x: 1
1688
+ :factor_y: 1
1689
+ :color: 4294967295
1057
1690
  - StoneWall:
1058
1691
  :x: 776.0
1059
1692
  :y: 552.0
1060
1693
  :angle: 0
1061
1694
  :zorder: 100
1695
+ :factor_x: 1
1696
+ :factor_y: 1
1697
+ :color: 4294967295
1062
1698
  - StoneWall:
1063
1699
  :x: 808.0
1064
1700
  :y: 552.0
1065
1701
  :angle: 0
1066
1702
  :zorder: 100
1703
+ :factor_x: 1
1704
+ :factor_y: 1
1705
+ :color: 4294967295
1067
1706
  - StoneWall:
1068
1707
  :x: 840.0
1069
1708
  :y: 552.0
1070
1709
  :angle: 0
1071
1710
  :zorder: 100
1711
+ :factor_x: 1
1712
+ :factor_y: 1
1713
+ :color: 4294967295
1072
1714
  - StoneWall:
1073
1715
  :x: 872.0
1074
1716
  :y: 552.0
1075
1717
  :angle: 0
1076
1718
  :zorder: 100
1719
+ :factor_x: 1
1720
+ :factor_y: 1
1721
+ :color: 4294967295
1077
1722
  - StoneWall:
1078
1723
  :x: 904.0
1079
1724
  :y: 552.0
1080
1725
  :angle: 0
1081
1726
  :zorder: 100
1727
+ :factor_x: 1
1728
+ :factor_y: 1
1729
+ :color: 4294967295
1082
1730
  - StoneWall:
1083
1731
  :x: 936.0
1084
1732
  :y: 552.0
1085
1733
  :angle: 0
1086
1734
  :zorder: 100
1735
+ :factor_x: 1
1736
+ :factor_y: 1
1737
+ :color: 4294967295
1087
1738
  - StoneWall:
1088
1739
  :x: 968.0
1089
1740
  :y: 552.0
1090
1741
  :angle: 0
1091
1742
  :zorder: 100
1743
+ :factor_x: 1
1744
+ :factor_y: 1
1745
+ :color: 4294967295
1092
1746
  - StoneWall:
1093
1747
  :x: 1008.0
1094
1748
  :y: 544.0
1095
1749
  :angle: 0
1096
1750
  :zorder: 100
1751
+ :factor_x: 1
1752
+ :factor_y: 1
1753
+ :color: 4294967295
1097
1754
  - StoneWall:
1098
1755
  :x: 1040.0
1099
1756
  :y: 576.0
1100
1757
  :angle: 0
1101
1758
  :zorder: 100
1759
+ :factor_x: 1
1760
+ :factor_y: 1
1761
+ :color: 4294967295
1102
1762
  - StoneWall:
1103
1763
  :x: 680.0
1104
1764
  :y: 400.0
1105
1765
  :angle: 0
1106
1766
  :zorder: 100
1767
+ :factor_x: 1
1768
+ :factor_y: 1
1769
+ :color: 4294967295
1107
1770
  - StoneWall:
1108
1771
  :x: 712.0
1109
1772
  :y: 432.0
1110
1773
  :angle: 0
1111
1774
  :zorder: 100
1775
+ :factor_x: 1
1776
+ :factor_y: 1
1777
+ :color: 4294967295
1112
1778
  - StoneWall:
1113
1779
  :x: 744.0
1114
1780
  :y: 432.0
1115
1781
  :angle: 0
1116
1782
  :zorder: 100
1783
+ :factor_x: 1
1784
+ :factor_y: 1
1785
+ :color: 4294967295
1117
1786
  - StoneWall:
1118
1787
  :x: 776.0
1119
1788
  :y: 432.0
1120
1789
  :angle: 0
1121
1790
  :zorder: 100
1791
+ :factor_x: 1
1792
+ :factor_y: 1
1793
+ :color: 4294967295
1122
1794
  - StoneWall:
1123
1795
  :x: 808.0
1124
1796
  :y: 432.0
1125
1797
  :angle: 0
1126
1798
  :zorder: 100
1799
+ :factor_x: 1
1800
+ :factor_y: 1
1801
+ :color: 4294967295
1127
1802
  - StoneWall:
1128
1803
  :x: 1072.0
1129
1804
  :y: 560.0
1130
1805
  :angle: 0
1131
1806
  :zorder: 100
1807
+ :factor_x: 1
1808
+ :factor_y: 1
1809
+ :color: 4294967295
1132
1810
  - StoneWall:
1133
1811
  :x: 400.0
1134
1812
  :y: 248.0
1135
1813
  :angle: 0
1136
1814
  :zorder: 100
1815
+ :factor_x: 1
1816
+ :factor_y: 1
1817
+ :color: 4294967295
1137
1818
  - StoneWall:
1138
1819
  :x: 840.0
1139
1820
  :y: 432.0
1140
1821
  :angle: 0
1141
1822
  :zorder: 100
1823
+ :factor_x: 1
1824
+ :factor_y: 1
1825
+ :color: 4294967295
1142
1826
  - StoneWall:
1143
1827
  :x: 872.0
1144
1828
  :y: 432.0
1145
1829
  :angle: 0
1146
1830
  :zorder: 100
1831
+ :factor_x: 1
1832
+ :factor_y: 1
1833
+ :color: 4294967295
1147
1834
  - StoneWall:
1148
1835
  :x: 904.0
1149
1836
  :y: 432.0
1150
1837
  :angle: 0
1151
1838
  :zorder: 100
1839
+ :factor_x: 1
1840
+ :factor_y: 1
1841
+ :color: 4294967295
1152
1842
  - StoneWall:
1153
1843
  :x: 936.0
1154
1844
  :y: 432.0
1155
1845
  :angle: 0
1156
1846
  :zorder: 100
1847
+ :factor_x: 1
1848
+ :factor_y: 1
1849
+ :color: 4294967295
1157
1850
  - StoneWall:
1158
1851
  :x: 936.0
1159
1852
  :y: 400.0
1160
1853
  :angle: 0
1161
1854
  :zorder: 100
1855
+ :factor_x: 1
1856
+ :factor_y: 1
1857
+ :color: 4294967295
1162
1858
  - StoneWall:
1163
1859
  :x: 936.0
1164
1860
  :y: 368.0
1165
1861
  :angle: 0
1166
1862
  :zorder: 100
1863
+ :factor_x: 1
1864
+ :factor_y: 1
1865
+ :color: 4294967295
1167
1866
  - StoneWall:
1168
1867
  :x: 744.0
1169
1868
  :y: 584.0
1170
1869
  :angle: 0
1171
1870
  :zorder: 100
1871
+ :factor_x: 1
1872
+ :factor_y: 1
1873
+ :color: 4294967295
1172
1874
  - StoneWall:
1173
1875
  :x: 744.0
1174
1876
  :y: 616.0
1175
1877
  :angle: 0
1176
1878
  :zorder: 100
1879
+ :factor_x: 1
1880
+ :factor_y: 1
1881
+ :color: 4294967295
1177
1882
  - StoneWall:
1178
1883
  :x: 744.0
1179
1884
  :y: 648.0
1180
1885
  :angle: 0
1181
1886
  :zorder: 100
1887
+ :factor_x: 1
1888
+ :factor_y: 1
1889
+ :color: 4294967295
1182
1890
  - StoneWall:
1183
1891
  :x: 744.0
1184
1892
  :y: 680.0
1185
1893
  :angle: 0
1186
1894
  :zorder: 100
1895
+ :factor_x: 1
1896
+ :factor_y: 1
1897
+ :color: 4294967295
1187
1898
  - StoneWall:
1188
1899
  :x: 744.0
1189
1900
  :y: 712.0
1190
1901
  :angle: 0
1191
1902
  :zorder: 100
1903
+ :factor_x: 1
1904
+ :factor_y: 1
1905
+ :color: 4294967295
1192
1906
  - StoneWall:
1193
1907
  :x: 744.0
1194
1908
  :y: 744.0
1195
1909
  :angle: 0
1196
1910
  :zorder: 100
1911
+ :factor_x: 1
1912
+ :factor_y: 1
1913
+ :color: 4294967295
1197
1914
  - StoneWall:
1198
1915
  :x: 776.0
1199
1916
  :y: 744.0
1200
1917
  :angle: 0
1201
1918
  :zorder: 100
1919
+ :factor_x: 1
1920
+ :factor_y: 1
1921
+ :color: 4294967295
1202
1922
  - StoneWall:
1203
1923
  :x: 808.0
1204
1924
  :y: 744.0
1205
1925
  :angle: 0
1206
1926
  :zorder: 100
1927
+ :factor_x: 1
1928
+ :factor_y: 1
1929
+ :color: 4294967295
1207
1930
  - StoneWall:
1208
1931
  :x: 104.0
1209
1932
  :y: 384.0
1210
1933
  :angle: 0
1211
1934
  :zorder: 100
1935
+ :factor_x: 1
1936
+ :factor_y: 1
1937
+ :color: 4294967295
1212
1938
  - StoneWall:
1213
1939
  :x: 64.0
1214
1940
  :y: 368.0
1215
1941
  :angle: 0
1216
1942
  :zorder: 100
1943
+ :factor_x: 1
1944
+ :factor_y: 1
1945
+ :color: 4294967295
1217
1946
  - StoneWall:
1218
1947
  :x: 272.0
1219
1948
  :y: 264.0
1220
1949
  :angle: 0
1221
1950
  :zorder: 100
1951
+ :factor_x: 1
1952
+ :factor_y: 1
1953
+ :color: 4294967295
1222
1954
  - StoneWall:
1223
1955
  :x: 280.0
1224
1956
  :y: 344.0
1225
1957
  :angle: 0
1226
1958
  :zorder: 100
1959
+ :factor_x: 1
1960
+ :factor_y: 1
1961
+ :color: 4294967295
1227
1962
  - StoneWall:
1228
1963
  :x: 88.0
1229
1964
  :y: 264.0
1230
1965
  :angle: 0
1231
1966
  :zorder: 100
1967
+ :factor_x: 1
1968
+ :factor_y: 1
1969
+ :color: 4294967295
1232
1970
  - StoneWall:
1233
1971
  :x: 128.0
1234
1972
  :y: 352.0
1235
1973
  :angle: 0
1236
1974
  :zorder: 100
1975
+ :factor_x: 1
1976
+ :factor_y: 1
1977
+ :color: 4294967295
1237
1978
  - StoneWall:
1238
1979
  :x: 48.0
1239
1980
  :y: 216.0
1240
1981
  :angle: 0
1241
1982
  :zorder: 100
1983
+ :factor_x: 1
1984
+ :factor_y: 1
1985
+ :color: 4294967295
1242
1986
  - StoneWall:
1243
1987
  :x: 200.0
1244
1988
  :y: 216.0
1245
1989
  :angle: 0
1246
1990
  :zorder: 100
1991
+ :factor_x: 1
1992
+ :factor_y: 1
1993
+ :color: 4294967295
1247
1994
  - StoneWall:
1248
1995
  :x: 48.0
1249
1996
  :y: 280.0
1250
1997
  :angle: 0
1251
1998
  :zorder: 100
1999
+ :factor_x: 1
2000
+ :factor_y: 1
2001
+ :color: 4294967295
1252
2002
  - StoneWall:
1253
2003
  :x: 72.0
1254
2004
  :y: 400.0
1255
2005
  :angle: 0
1256
2006
  :zorder: 100
2007
+ :factor_x: 1
2008
+ :factor_y: 1
2009
+ :color: 4294967295
1257
2010
  - StoneWall:
1258
2011
  :x: 192.0
1259
2012
  :y: 360.0
1260
2013
  :angle: 0
1261
2014
  :zorder: 100
2015
+ :factor_x: 1
2016
+ :factor_y: 1
2017
+ :color: 4294967295
1262
2018
  - StoneWall:
1263
2019
  :x: 32.0
1264
2020
  :y: 544.0
1265
2021
  :angle: 0
1266
2022
  :zorder: 100
2023
+ :factor_x: 1
2024
+ :factor_y: 1
2025
+ :color: 4294967295
1267
2026
  - StoneWall:
1268
2027
  :x: 72.0
1269
2028
  :y: 448.0
1270
2029
  :angle: 0
1271
2030
  :zorder: 100
2031
+ :factor_x: 1
2032
+ :factor_y: 1
2033
+ :color: 4294967295
1272
2034
  - StoneWall:
1273
2035
  :x: 80.0
1274
2036
  :y: 584.0
1275
2037
  :angle: 0
1276
2038
  :zorder: 100
2039
+ :factor_x: 1
2040
+ :factor_y: 1
2041
+ :color: 4294967295
1277
2042
  - StoneWall:
1278
2043
  :x: 80.0
1279
2044
  :y: 536.0
1280
2045
  :angle: 0
1281
2046
  :zorder: 100
2047
+ :factor_x: 1
2048
+ :factor_y: 1
2049
+ :color: 4294967295
1282
2050
  - StoneWall:
1283
2051
  :x: 152.0
1284
2052
  :y: 640.0
1285
2053
  :angle: 0
1286
2054
  :zorder: 100
2055
+ :factor_x: 1
2056
+ :factor_y: 1
2057
+ :color: 4294967295
1287
2058
  - StoneWall:
1288
2059
  :x: 48.0
1289
2060
  :y: 584.0
1290
2061
  :angle: 0
1291
2062
  :zorder: 100
2063
+ :factor_x: 1
2064
+ :factor_y: 1
2065
+ :color: 4294967295
1292
2066
  - StoneWall:
1293
2067
  :x: 128.0
1294
2068
  :y: 608.0
1295
2069
  :angle: 0
1296
2070
  :zorder: 100
2071
+ :factor_x: 1
2072
+ :factor_y: 1
2073
+ :color: 4294967295
1297
2074
  - StoneWall:
1298
2075
  :x: 104.0
1299
2076
  :y: 616.0
1300
2077
  :angle: 0
1301
2078
  :zorder: 100
2079
+ :factor_x: 1
2080
+ :factor_y: 1
2081
+ :color: 4294967295
1302
2082
  - StoneWall:
1303
2083
  :x: 24.0
1304
2084
  :y: 576.0
1305
2085
  :angle: 0
1306
2086
  :zorder: 100
2087
+ :factor_x: 1
2088
+ :factor_y: 1
2089
+ :color: 4294967295
1307
2090
  - StoneWall:
1308
2091
  :x: 24.0
1309
2092
  :y: 600.0
1310
2093
  :angle: 0
1311
2094
  :zorder: 100
2095
+ :factor_x: 1
2096
+ :factor_y: 1
2097
+ :color: 4294967295
1312
2098
  - StoneWall:
1313
2099
  :x: 296.0
1314
2100
  :y: 200.0
1315
2101
  :angle: 0
1316
2102
  :zorder: 100
2103
+ :factor_x: 1
2104
+ :factor_y: 1
2105
+ :color: 4294967295
1317
2106
  - StoneWall:
1318
2107
  :x: 380.0
1319
2108
  :y: 218.0
1320
2109
  :angle: 0
1321
2110
  :zorder: 100
2111
+ :factor_x: 1
2112
+ :factor_y: 1
2113
+ :color: 4294967295
1322
2114
  - StoneWall:
1323
2115
  :x: 406.0
1324
2116
  :y: 216.0
1325
2117
  :angle: 0
1326
2118
  :zorder: 100
2119
+ :factor_x: 1
2120
+ :factor_y: 1
2121
+ :color: 4294967295
1327
2122
  - StoneWall:
1328
2123
  :x: 445.0
1329
2124
  :y: 212.0
1330
2125
  :angle: 0
1331
2126
  :zorder: 100
2127
+ :factor_x: 1
2128
+ :factor_y: 1
2129
+ :color: 4294967295
1332
2130
  - StoneWall:
1333
2131
  :x: 473.0
1334
2132
  :y: 212.0
1335
2133
  :angle: 0
1336
2134
  :zorder: 100
2135
+ :factor_x: 1
2136
+ :factor_y: 1
2137
+ :color: 4294967295
1337
2138
  - StoneWall:
1338
2139
  :x: 501.0
1339
2140
  :y: 216.0
1340
2141
  :angle: 0
1341
2142
  :zorder: 100
2143
+ :factor_x: 1
2144
+ :factor_y: 1
2145
+ :color: 4294967295
1342
2146
  - StoneWall:
1343
2147
  :x: 514.0
1344
2148
  :y: 230.0
1345
2149
  :angle: 0
1346
2150
  :zorder: 100
2151
+ :factor_x: 1
2152
+ :factor_y: 1
2153
+ :color: 4294967295
1347
2154
  - StoneWall:
1348
2155
  :x: 471.0
1349
2156
  :y: 256.0
1350
2157
  :angle: 0
1351
2158
  :zorder: 100
2159
+ :factor_x: 1
2160
+ :factor_y: 1
2161
+ :color: 4294967295
1352
2162
  - StoneWall:
1353
2163
  :x: 450.0
1354
2164
  :y: 257.0
1355
2165
  :angle: 0
1356
2166
  :zorder: 100
2167
+ :factor_x: 1
2168
+ :factor_y: 1
2169
+ :color: 4294967295
1357
2170
  - StoneWall:
1358
2171
  :x: 432.0
1359
2172
  :y: 280.0
1360
2173
  :angle: 0
1361
2174
  :zorder: 100
2175
+ :factor_x: 1
2176
+ :factor_y: 1
2177
+ :color: 4294967295
1362
2178
  - StoneWall:
1363
2179
  :x: 380.0
1364
2180
  :y: 262.0
1365
2181
  :angle: 0
1366
2182
  :zorder: 100
2183
+ :factor_x: 1
2184
+ :factor_y: 1
2185
+ :color: 4294967295
1367
2186
  - StoneWall:
1368
2187
  :x: 353.0
1369
2188
  :y: 264.0
1370
2189
  :angle: 0
1371
2190
  :zorder: 100
2191
+ :factor_x: 1
2192
+ :factor_y: 1
2193
+ :color: 4294967295
1372
2194
  - StoneWall:
1373
2195
  :x: 112.0
1374
2196
  :y: 184.0
1375
2197
  :angle: 0
1376
2198
  :zorder: 100
2199
+ :factor_x: 1
2200
+ :factor_y: 1
2201
+ :color: 4294967295
1377
2202
  - StoneWall:
1378
2203
  :x: 40.0
1379
2204
  :y: 232.0
1380
2205
  :angle: 0
1381
2206
  :zorder: 100
2207
+ :factor_x: 1
2208
+ :factor_y: 1
2209
+ :color: 4294967295
1382
2210
  - StoneWall:
1383
2211
  :x: 280.0
1384
2212
  :y: 176.0
1385
2213
  :angle: 0
1386
2214
  :zorder: 96
2215
+ :factor_x: 1
2216
+ :factor_y: 1
2217
+ :color: 4294967295
1387
2218
  - StoneWall:
1388
2219
  :x: 256.0
1389
2220
  :y: 312.0
1390
2221
  :angle: 0
1391
2222
  :zorder: 100
2223
+ :factor_x: 1
2224
+ :factor_y: 1
2225
+ :color: 4294967295
1392
2226
  - StoneWall:
1393
2227
  :x: 88.0
1394
2228
  :y: 264.0
1395
2229
  :angle: 0
1396
2230
  :zorder: 100
2231
+ :factor_x: 1
2232
+ :factor_y: 1
2233
+ :color: 4294967295
1397
2234
  - StoneWall:
1398
2235
  :x: 104.0
1399
2236
  :y: 240.0
1400
2237
  :angle: 0
1401
2238
  :zorder: 100
2239
+ :factor_x: 1
2240
+ :factor_y: 1
2241
+ :color: 4294967295
1402
2242
  - StoneWall:
1403
2243
  :x: 216.0
1404
2244
  :y: 184.0
1405
2245
  :angle: 0
1406
2246
  :zorder: 99
2247
+ :factor_x: 1
2248
+ :factor_y: 1
2249
+ :color: 4294967295
1407
2250
  - StoneWall:
1408
2251
  :x: 248.0
1409
2252
  :y: 184.0
1410
2253
  :angle: 0
1411
2254
  :zorder: 99
2255
+ :factor_x: 1
2256
+ :factor_y: 1
2257
+ :color: 4294967295
1412
2258
  - StoneWall:
1413
2259
  :x: 80.0
1414
2260
  :y: 200.0
1415
2261
  :angle: 0
1416
2262
  :zorder: 100
2263
+ :factor_x: 1
2264
+ :factor_y: 1
2265
+ :color: 4294967295
1417
2266
  - StoneWall:
1418
2267
  :x: 288.0
1419
2268
  :y: 320.0
1420
2269
  :angle: 0
1421
2270
  :zorder: 100
2271
+ :factor_x: 1
2272
+ :factor_y: 1
2273
+ :color: 4294967295
1422
2274
  - StoneWall:
1423
2275
  :x: 360.0
1424
2276
  :y: 312.0
1425
2277
  :angle: 0
1426
2278
  :zorder: 100
2279
+ :factor_x: 1
2280
+ :factor_y: 1
2281
+ :color: 4294967295
1427
2282
  - StoneWall:
1428
2283
  :x: 392.0
1429
2284
  :y: 312.0
1430
2285
  :angle: 0
1431
2286
  :zorder: 100
2287
+ :factor_x: 1
2288
+ :factor_y: 1
2289
+ :color: 4294967295
1432
2290
  - StoneWall:
1433
2291
  :x: 192.0
1434
2292
  :y: 240.0
1435
2293
  :angle: 0
1436
2294
  :zorder: 100
2295
+ :factor_x: 1
2296
+ :factor_y: 1
2297
+ :color: 4294967295
1437
2298
  - StoneWall:
1438
2299
  :x: 272.0
1439
2300
  :y: 264.0
1440
2301
  :angle: 0
1441
2302
  :zorder: 100
2303
+ :factor_x: 1
2304
+ :factor_y: 1
2305
+ :color: 4294967295
1442
2306
  - StoneWall:
1443
2307
  :x: 224.0
1444
2308
  :y: 248.0
1445
2309
  :angle: 0
1446
2310
  :zorder: 100
2311
+ :factor_x: 1
2312
+ :factor_y: 1
2313
+ :color: 4294967295
1447
2314
  - StoneWall:
1448
2315
  :x: 24.0
1449
2316
  :y: 280.0
1450
2317
  :angle: 0
1451
2318
  :zorder: 100
2319
+ :factor_x: 1
2320
+ :factor_y: 1
2321
+ :color: 4294967295
1452
2322
  - StoneWall:
1453
2323
  :x: 112.0
1454
2324
  :y: 248.0
1455
2325
  :angle: 0
1456
2326
  :zorder: 100
2327
+ :factor_x: 1
2328
+ :factor_y: 1
2329
+ :color: 4294967295
1457
2330
  - StoneWall:
1458
2331
  :x: 240.0
1459
2332
  :y: 272.0
1460
2333
  :angle: 0
1461
2334
  :zorder: 100
2335
+ :factor_x: 1
2336
+ :factor_y: 1
2337
+ :color: 4294967295
1462
2338
  - StoneWall:
1463
2339
  :x: 256.0
1464
2340
  :y: 280.0
1465
2341
  :angle: 0
1466
2342
  :zorder: 100
2343
+ :factor_x: 1
2344
+ :factor_y: 1
2345
+ :color: 4294967295
1467
2346
  - StoneWall:
1468
2347
  :x: 288.0
1469
2348
  :y: 264.0
1470
2349
  :angle: 0
1471
2350
  :zorder: 100
2351
+ :factor_x: 1
2352
+ :factor_y: 1
2353
+ :color: 4294967295
1472
2354
  - StoneWall:
1473
2355
  :x: 288.0
1474
2356
  :y: 240.0
1475
2357
  :angle: 0
1476
2358
  :zorder: 100
2359
+ :factor_x: 1
2360
+ :factor_y: 1
2361
+ :color: 4294967295
1477
2362
  - StoneWall:
1478
2363
  :x: 336.0
1479
2364
  :y: 224.0
1480
2365
  :angle: 0
1481
2366
  :zorder: 100
2367
+ :factor_x: 1
2368
+ :factor_y: 1
2369
+ :color: 4294967295
1482
2370
  - Star:
1483
2371
  :x: 328.0
1484
2372
  :y: 560.0
1485
2373
  :angle: 0
1486
2374
  :zorder: 100
2375
+ :factor_x: 1
2376
+ :factor_y: 1
2377
+ :color: 4282824932
1487
2378
  - Star:
1488
2379
  :x: 360.0
1489
2380
  :y: 544.0
1490
2381
  :angle: 0
1491
2382
  :zorder: 100
2383
+ :factor_x: 1
2384
+ :factor_y: 1
2385
+ :color: 4284564945
1492
2386
  - Star:
1493
2387
  :x: 320.0
1494
2388
  :y: 528.0
1495
2389
  :angle: 0
1496
2390
  :zorder: 100
2391
+ :factor_x: 1
2392
+ :factor_y: 1
2393
+ :color: 4290431385
1497
2394
  - StoneWall:
1498
2395
  :x: 448.0
1499
2396
  :y: 640.0
1500
2397
  :angle: 0
1501
2398
  :zorder: 100
2399
+ :factor_x: 1
2400
+ :factor_y: 1
2401
+ :color: 4294967295
1502
2402
  - Star:
1503
2403
  :x: 368.0
1504
2404
  :y: 584.0
1505
2405
  :angle: 0
1506
2406
  :zorder: 100
2407
+ :factor_x: 1
2408
+ :factor_y: 1
2409
+ :color: 4283655650
1507
2410
  - Star:
1508
2411
  :x: 376.0
1509
2412
  :y: 528.0
1510
2413
  :angle: 0
1511
2414
  :zorder: 100
2415
+ :factor_x: 1
2416
+ :factor_y: 1
2417
+ :color: 4290567513
1512
2418
  - Star:
1513
2419
  :x: 384.0
1514
2420
  :y: 568.0
1515
2421
  :angle: 0
1516
2422
  :zorder: 100
2423
+ :factor_x: 1
2424
+ :factor_y: 1
2425
+ :color: 4282088124
1517
2426
  - Star:
1518
2427
  :x: 308.0
1519
2428
  :y: 591.0
1520
2429
  :angle: 0
1521
2430
  :zorder: 100
2431
+ :factor_x: 1
2432
+ :factor_y: 1
2433
+ :color: 4282618365
1522
2434
  - Star:
1523
2435
  :x: 292.0
1524
2436
  :y: 561.0
1525
2437
  :angle: 0
1526
2438
  :zorder: 100
2439
+ :factor_x: 1
2440
+ :factor_y: 1
2441
+ :color: 4284135289
1527
2442
  - Star:
1528
2443
  :x: 287.0
1529
2444
  :y: 603.0
1530
2445
  :angle: 0
1531
2446
  :zorder: 100
2447
+ :factor_x: 1
2448
+ :factor_y: 1
2449
+ :color: 4281573682
1532
2450
  - Star:
1533
2451
  :x: 296.0
1534
2452
  :y: 528.0
1535
2453
  :angle: 0
1536
2454
  :zorder: 100
2455
+ :factor_x: 1
2456
+ :factor_y: 1
2457
+ :color: 4294288010
1537
2458
  - StoneWall:
1538
2459
  :x: 50.0
1539
2460
  :y: 191.0
1540
2461
  :angle: 0
1541
2462
  :zorder: 100
2463
+ :factor_x: 1
2464
+ :factor_y: 1
2465
+ :color: 4294967295
1542
2466
  - StoneWall:
1543
2467
  :x: 24.0
1544
2468
  :y: 184.0
1545
2469
  :angle: 0
1546
2470
  :zorder: 100
2471
+ :factor_x: 1
2472
+ :factor_y: 1
2473
+ :color: 4294967295
1547
2474
  - StoneWall:
1548
2475
  :x: 79.0
1549
2476
  :y: 176.0
1550
2477
  :angle: 0
1551
2478
  :zorder: 100
2479
+ :factor_x: 1
2480
+ :factor_y: 1
2481
+ :color: 4294967295
1552
2482
  - StoneWall:
1553
- :x: 103.0
1554
- :y: 159.0
2483
+ :x: 96.0
2484
+ :y: 152.0
1555
2485
  :angle: 0
1556
2486
  :zorder: 100
2487
+ :factor_x: 1
2488
+ :factor_y: 1
2489
+ :color: 4294967295
1557
2490
  - StoneWall:
1558
- :x: 242.0
1559
- :y: 159.0
2491
+ :x: 240.0
2492
+ :y: 152.0
1560
2493
  :angle: 0
1561
2494
  :zorder: 100
2495
+ :factor_x: 1
2496
+ :factor_y: 1
2497
+ :color: 4294967295
1562
2498
  - StoneWall:
1563
2499
  :x: 75.0
1564
2500
  :y: 426.0
1565
2501
  :angle: 0
1566
2502
  :zorder: 100
2503
+ :factor_x: 1
2504
+ :factor_y: 1
2505
+ :color: 4294967295
1567
2506
  - StoneWall:
1568
2507
  :x: 95.0
1569
2508
  :y: 366.0
1570
2509
  :angle: 0
1571
2510
  :zorder: 100
2511
+ :factor_x: 1
2512
+ :factor_y: 1
2513
+ :color: 4294967295
1572
2514
  - StoneWall:
1573
2515
  :x: 96.0
1574
2516
  :y: 410.0
1575
2517
  :angle: 0
1576
2518
  :zorder: 100
2519
+ :factor_x: 1
2520
+ :factor_y: 1
2521
+ :color: 4294967295
1577
2522
  - StoneWall:
1578
2523
  :x: 133.0
1579
2524
  :y: 382.0
1580
2525
  :angle: 0
1581
2526
  :zorder: 100
2527
+ :factor_x: 1
2528
+ :factor_y: 1
2529
+ :color: 4294967295
1582
2530
  - StoneWall:
1583
2531
  :x: 164.0
1584
2532
  :y: 370.0
1585
2533
  :angle: 0
1586
2534
  :zorder: 100
2535
+ :factor_x: 1
2536
+ :factor_y: 1
2537
+ :color: 4294967295
1587
2538
  - StoneWall:
1588
2539
  :x: 120.0
1589
2540
  :y: 400.0
1590
2541
  :angle: 0
1591
2542
  :zorder: 100
2543
+ :factor_x: 1
2544
+ :factor_y: 1
2545
+ :color: 4294967295
2546
+ - StoneWall:
2547
+ :x: 73.0
2548
+ :y: 142.0
2549
+ :angle: 0
2550
+ :zorder: 100
2551
+ :factor_x: 1
2552
+ :factor_y: 1
2553
+ :color: 4294967295
2554
+ - StoneWall:
2555
+ :x: 24.0
2556
+ :y: 144.0
2557
+ :angle: 0
2558
+ :zorder: 100
2559
+ :factor_x: 1.25
2560
+ :factor_y: 1.25
2561
+ :color: 4294967295
2562
+ - StoneWall:
2563
+ :x: 24.0
2564
+ :y: 104.0
2565
+ :angle: 0
2566
+ :zorder: 100
2567
+ :factor_x: 1.25
2568
+ :factor_y: 1.25
2569
+ :color: 4294967295
2570
+ - StoneWall:
2571
+ :x: 40.0
2572
+ :y: 144.0
2573
+ :angle: 0
2574
+ :zorder: 100
2575
+ :factor_x: 1.25
2576
+ :factor_y: 1.25
2577
+ :color: 4294967295
2578
+ - StoneWall:
2579
+ :x: 48.0
2580
+ :y: 112.0
2581
+ :angle: 0
2582
+ :zorder: 100
2583
+ :factor_x: 1.25
2584
+ :factor_y: 1.25
2585
+ :color: 4294967295
2586
+ - StoneWall:
2587
+ :x: 24.0
2588
+ :y: 72.0
2589
+ :angle: 0
2590
+ :zorder: 100
2591
+ :factor_x: 1.25
2592
+ :factor_y: 1.25
2593
+ :color: 4294967295
2594
+ - StoneWall:
2595
+ :x: 40.0
2596
+ :y: 160.0
2597
+ :angle: 0
2598
+ :zorder: 100
2599
+ :factor_x: 1.25
2600
+ :factor_y: 1.25
2601
+ :color: 4294967295