chingu 0.8rc2 → 0.8rc3

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.
Files changed (43) hide show
  1. data/README.rdoc +66 -19
  2. data/benchmarks/arrays_bench.rb +22 -0
  3. data/benchmarks/game_objects_benchmark.rb +29 -35
  4. data/chingu.gemspec +16 -2
  5. data/examples/example18_animation_trait.rb +14 -9
  6. data/examples/example19.yml +305 -561
  7. data/examples/example19_edit_viewport.rb +3 -1
  8. data/examples/example1_basics.rb +4 -4
  9. data/examples/example21.yml +62 -54
  10. data/examples/example21_sidescroller_with_edit.rb +13 -21
  11. data/examples/example4_gamestates.rb +0 -2
  12. data/examples/example7_gfx_helpers.rb +1 -1
  13. data/examples/example8_traits.rb +1 -2
  14. data/examples/example9_collision_detection.rb +1 -1
  15. data/examples/game1.rb +1 -1
  16. data/lib/chingu.rb +1 -2
  17. data/lib/chingu/animation.rb +13 -5
  18. data/lib/chingu/assets.rb +2 -2
  19. data/lib/chingu/basic_game_object.rb +33 -30
  20. data/lib/chingu/game_object.rb +0 -5
  21. data/lib/chingu/game_object_list.rb +34 -21
  22. data/lib/chingu/game_states/edit.rb +2 -5
  23. data/lib/chingu/game_states/fade_to.rb +0 -1
  24. data/lib/chingu/game_states/pause.rb +1 -1
  25. data/lib/chingu/helpers/game_object.rb +0 -1
  26. data/lib/chingu/parallax.rb +3 -9
  27. data/lib/chingu/simple_menu.rb +7 -8
  28. data/lib/chingu/traits/animation.rb +2 -4
  29. data/lib/chingu/traits/sprite.rb +16 -13
  30. data/lib/chingu/window.rb +1 -1
  31. data/spec/chingu/animation_spec.rb +88 -0
  32. data/spec/chingu/assets_spec.rb +58 -0
  33. data/spec/chingu/basic_game_object_spec.rb +111 -0
  34. data/spec/chingu/game_object_list_spec.rb +78 -0
  35. data/spec/chingu/game_object_spec.rb +50 -14
  36. data/spec/chingu/game_state_manager_spec.rb +105 -0
  37. data/spec/chingu/helpers/input_client_spec.rb +4 -0
  38. data/spec/chingu/helpers/input_dispatcher_spec.rb +4 -0
  39. data/spec/chingu/images/droid_11x15.bmp +0 -0
  40. data/spec/chingu/parallax_spec.rb +25 -16
  41. data/spec/chingu/window_spec.rb +55 -0
  42. data/spec/spec_helper.rb +1 -5
  43. metadata +17 -3
@@ -3,12 +3,8 @@ http://github.com/ippa/chingu/tree/master
3
3
 
4
4
  DOCUMENTATION: http://rdoc.info/projects/ippa/chingu
5
5
 
6
- Ruby 1.9.1 is recommended. Should also work with 1.8.7+.
7
-
8
- Chingu has started to settle down, thouch core classes and naming can still change for good reasons.
9
-
10
- == INSTALL
11
- gem install chingu
6
+ Ruby 1.9.2 is recommended. Should also work with 1.8.7+.
7
+ Chingu development is mostly conducted using Win7 / Ruby 1.9.2.
12
8
 
13
9
 
14
10
  == DESCRIPTION
@@ -17,6 +13,37 @@ Builds on the awesome Gosu (Ruby/C++) which provides all the core functionality.
17
13
  It adds simple yet powerful game states, pretty input handling, deployment safe asset-handling, a basic re-usable game object and automation of common task.
18
14
 
19
15
 
16
+ == INSTALL
17
+ gem install chingu
18
+
19
+
20
+ == QUICK START (TRY OUT THE EXAMPLES)
21
+ Chingu comes with 25+ examples demonstrating various parts of Chingu.
22
+ Please browse the examples-directory in the Chingu root directory.
23
+ The examples start out very simple. Watch out for instructions in the windows titlebar.
24
+ Could be how to move the onscreen player or how to move the example forward. Usually it's arrowkeys and space.
25
+ There's also more complex examples, like a clone of Conways game of life (http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) game_of_life.rb and example21_sidescroller_with_edit.rb where You can switch between playing and editing the level itself.
26
+
27
+ == PROJECTS USING CHINGU
28
+ Links to some of the projects using/depending on Chingu:
29
+ * https://github.com/Spooner/fidgit (GUI-lib )
30
+ * https://github.com/Spooner/sidney (Sleep Is Death remake in ruby)
31
+ * https://github.com/ippa/the_light_at_the_end_of_the_tunnel (LD#16 game compo entry)
32
+ * https://github.com/ippa/gnorf (LD#18 game compo entry. Decent minigame with online highscores.)
33
+ * https://github.com/ippa/holiday_droid (Work in progess platformer)
34
+ * https://github.com/ippa/pixel_pang (Work in progress remake of the classic Pang)
35
+ * https://github.com/ippa/whygone (An odd little platformer-puzzle-game for _why day)
36
+ * https://github.com/erisdiscord/gosu-tmx (a TMX map loader)
37
+ * https://github.com/rkachowski/tmxtilemap (Another TMX-class)
38
+ * https://github.com/erisdiscord/gosu-ring (Secret of Mana-style ring menu for chingu/gosu)
39
+ * https://github.com/deps/Berzerk (remake of the classic game. comes with robots.)
40
+ * https://github.com/rkachowski/tigjamuk10 ("sillyness from tigjamuk - CB2 bistro in Cambridge, January 2010")
41
+ * https://github.com/zukunftsalick/ruby-raid (Remake of Ataris river raid, unsure of status)
42
+ * https://github.com/edward/spacewar (a small game, unsure of status)
43
+ * https://github.com/jstorimer/zig-zag (2D scrolling game, unsure of status)
44
+
45
+ ... miss your Chingu project? Msg me on github and I'll add it to the list!
46
+
20
47
  == THE STORY
21
48
  The last years I've dabbled around a lot with game development.
22
49
  I've developed games in both Rubygame and Gosu. I've looked at gamebox.
@@ -85,6 +112,9 @@ A class for easy parallaxscrolling. Add layers with different damping, move the
85
112
  === Chingu::HighScoreList
86
113
  A class to keep track of high scores, limit the list, automatic sorting on score, save/load to disc. See example13.rb for more.
87
114
 
115
+ === Chingu::OnlineHighScoreList
116
+ A class to keep/sync online highscores to http://gamercv.com/. A lot more fun competing with others for positions then a local list.
117
+
88
118
  === Various Helpers
89
119
  Both $window and game states gets some new graphical helpers, currently only 3, but quite useful:
90
120
 
@@ -553,11 +583,19 @@ A simple trait could be:
553
583
  end
554
584
 
555
585
  #
556
- # Namespaced outside ClassMethods get's included as normal instance-methods
586
+ # Since it's namespaced outside ClassMethods it becomes a normal instance-method
557
587
  #
558
588
  def inspect
559
589
  "Hello I'm an #{self.class.to_s}"
560
590
  end
591
+
592
+ #
593
+ # setup_trait is called when a object is created from a class that included the trait
594
+ # you most likely want to put all the traits settings and option parsing here
595
+ #
596
+ def setup_trait(options)
597
+ @long_inspect = true
598
+ end
561
599
 
562
600
  end
563
601
  end
@@ -571,13 +609,14 @@ A simple trait could be:
571
609
  Enemy.all.first.inspect # => "Hello I'm a Enemy"
572
610
 
573
611
 
574
- Example of using traits :velocity and :timer:
612
+ Example of using traits :velocity and :timer.
613
+ We also use GameObject#setup which will automtically be called ad the end of GameObject#initialize.
614
+ It's often a little bit cleaner to use setup() then to override initialize().
575
615
 
576
616
  class Ogre < Chingu::GameObject
577
617
  traits :velocity, :timer
578
-
579
- def initialize(options)
580
- super
618
+
619
+ def setup
581
620
  @red = Gosu::Color.new(0xFFFF0000)
582
621
  @white = Gosu::Color.new(0xFFFFFFFF)
583
622
 
@@ -607,6 +646,7 @@ The flow for a game object then becomes:
607
646
  -- creating an instance of X
608
647
  1) GameObject#initialize(options)
609
648
  2) GameObject#setup_trait(options)
649
+ 3) GameObject#setup(options)
610
650
  -- each game iteration
611
651
  3) GameObject#draw_trait
612
652
  4) GameObject#draw
@@ -615,6 +655,11 @@ The flow for a game object then becomes:
615
655
 
616
656
  There's a couple of traits included as default in Chingu:
617
657
 
658
+ ==== Trait "sprite"
659
+ This trait fuels GameObject. A GameObject is a BasicGameObject + the sprite-trait.
660
+ Adds accessors :x, :y, :angle, :factor_x, :factor_y, :center_x, :center_y, :zorder, :mode, :visible, :color.
661
+ See documentation for GameObject for how it works.
662
+
618
663
  ==== Trait "timer"
619
664
  Adds timer functionality to your game object
620
665
  during(300) { self.color = Color.new(0xFFFFFFFF) } # forces @color to white every update for 300 ms
@@ -739,11 +784,14 @@ Chingu solves this problem behind the scenes for the most common assets. The 2 l
739
784
  You also have:
740
785
  Sound["shot.wav"]
741
786
  Song["intromusic.ogg"]
742
-
787
+ Font["arial"]
788
+ Font["verdana", 16] # 16 is the size of the font
789
+
743
790
  The default settings are like this:
744
791
  Image["image.png"] -- searches directories ".", "images", "gfx" and "media"
745
792
  Sample["sample.wav"] -- searches directories ".", "sounds", "sfx" and "media"
746
793
  Song["song.ogg"] -- searches directories ".", "songs", "sounds", "sfx" and "media"
794
+ Font["verdana"] -- searches directories ".", "fonts", "media"
747
795
 
748
796
  Add your own searchpaths like this:
749
797
  Gosu::Image.autoload_dirs << File.join(ROOT, "gfx")
@@ -753,9 +801,6 @@ This will add \path\to\your\game\gfx and \path\to\your\game\samples to Image an
753
801
 
754
802
  Thanks to Jacious of rubygame-fame (http://rubygame.org/) for his named resource code powering this.
755
803
 
756
- Tiles and fonts are trickier since they require extra parameters so you'll have to do those the ordinary way.
757
- You have $window.root (equivalent to ROOT_PATH above) for free though which points to the dir containing the game.
758
-
759
804
  === Text
760
805
  Text is a class to give the use of Gosu::Font more rubyish feel and fit it better into Chingu.
761
806
 
@@ -790,7 +835,7 @@ As far as possible, use correct rubyfied english game_objects, not gameobjects.
790
835
  * Plain Gosu is very minimalistic, perfect to build some higher level logic on!
791
836
  * Deployment and asset handling should be simple
792
837
  * Managing game states/scenes (intros, menus, levels etc) should be simple
793
- * There are patterns in game development
838
+ * There are a lot patterns in game development
794
839
 
795
840
  == OPINIONS
796
841
  * Less code is usually better
@@ -798,18 +843,20 @@ As far as possible, use correct rubyfied english game_objects, not gameobjects.
798
843
  * Don't separate too much from Gosus core-naming
799
844
 
800
845
  == CREDITS:
846
+ * Spooner (input-work, tests and various other patches)
847
+ * Jacob Huzak (sprite-trait, tests etc)
801
848
  * Jacius of Rubygame (For doing cool stuff that's well documented as re-usable). So far rect.rb and named_resource.rb is straight outta Rubygame.
802
849
  * Banister (of texplay fame) for general feedeback and help with ruby-internals and building the trait-system
803
850
  * Jduff for input / commits
804
- * Jlnr,Philymore,Shawn24,JamesKilton for constructive feedback/discussions
851
+ * Jlnr,Philomory,Shawn24,JamesKilton for constructive feedback/discussions
805
852
  * Ariel Pillet for codesuggestions and cleanups
806
853
  * Deps for making the first real full game with Chingu (and making it better in the process)
807
854
  * Thanks to http://github.com/tarcieri for require_all code, good stuff
855
+ .. Did I forget anyone here? Msg me on github.
808
856
 
809
857
  == REQUIREMENTS:
810
- * Gosu latest version
858
+ * Gosu, preferable the latest version
811
859
  * Ruby 1.9.1+ or 1.8.7+
812
- * gem 'opengl' if you want to use Image#retrofy, not needed otherwise
813
860
  * gem 'texplay' for some bonus Image-pixel operations, not needed otherwise
814
861
 
815
862
  == TODO - this list is Discontinued and no longer updated!
@@ -0,0 +1,22 @@
1
+ #!/usr/bin/env ruby
2
+ require 'rubygems'
3
+ require 'benchmark'
4
+ a = []
5
+ aa = []
6
+ b = []
7
+ bb = []
8
+ 1000.times do |index|
9
+ a.push(index)
10
+ b.push(index) if index%2 == 0
11
+ aa.push(index)
12
+ bb.push(index) if index%2 == 0
13
+ end
14
+ p a.size
15
+ p aa.size
16
+
17
+ Benchmark.bm(22) do |x|
18
+ x.report('remove b from a #1') { b.each { |x| a.delete(x) }; }
19
+ p a.size
20
+ x.report('remove b from a #2') { aa -= bb; }
21
+ p aa.size
22
+ end
@@ -2,49 +2,43 @@
2
2
  require 'rubygems'
3
3
  require 'benchmark'
4
4
  require File.join(File.dirname($0), "..", "lib", "chingu")
5
+ #gem 'chingu', '0.6'
6
+ #require 'chingu'
5
7
  include Gosu
8
+ include Chingu
6
9
 
10
+ class ObjectX < GameObject; end;
11
+ class ObjectY < GameObject; end;
12
+ class ObjectZ < GameObject; end;
7
13
 
8
14
  class Game < Chingu::Window
9
15
  def initialize
10
16
  super(600,200)
11
17
  self.input = { :esc => :exit }
12
- @iterations = 10
18
+
19
+ Benchmark.bm(22) do |x|
20
+ game_object = GameObject.new
21
+ x.report('respond_to?') { 100000.times { game_object.respond_to?(:update_trait) } }
22
+ x.report('call empty method') { 100000.times { game_object.update_trait } }
23
+
24
+ x.report('game_objects') { 10000.times { GameObject.create } }
25
+ game_objects.clear
26
+ x.report('basic_game_objects') { 10000.times { BasicGameObject.create } }
27
+ game_objects.clear
28
+ x.report('ObjectX') { 10000.times { ObjectX.create } }
29
+ x.report('ObjectY') { 10000.times { ObjectY.create } }
30
+ x.report('ObjectZ') { 10000.times { ObjectZ.create } }
31
+
32
+ x.report('ObjectX.each') { ObjectX.all.each { |x| } }
33
+ x.report('ObjectY.each') { ObjectY.all.each { |y| } }
34
+ x.report('ObjectZ.each') { ObjectZ.all.each { |z| } }
35
+
36
+ p game_objects.size
37
+ x.report('ObjectX destroy') { ObjectX.each_with_index { |x, i| x.destroy if i%2==0 }; game_objects.sync; }
38
+ p game_objects.size
39
+ end
40
+
13
41
  end
14
-
15
- def update
16
- if @iterations > 0
17
- create_objects
18
- @iterations -= 1
19
- end
20
- end
21
-
22
- def create_objects
23
- Benchmark.bm(22) do |x|
24
- x.report('create') do
25
- 100000.times do
26
- MyGameObject.create
27
- end
28
- end
29
- end
30
- end
31
- end
32
-
33
- class MyGameObject < Chingu::GameObject
34
42
  end
35
43
 
36
44
  Game.new.show
37
-
38
-
39
- # 100000 MyGameObject.create with add_game_objects / remove_game_objects -arrays
40
- # user system total real
41
- #create 0.951000 0.047000 0.998000 ( 0.998057)
42
- #create 1.139000 0.031000 1.170000 ( 1.155066)
43
- #create 1.186000 0.047000 1.233000 ( 1.239071)
44
- #create 1.528000 0.000000 1.528000 ( 1.520087)
45
- #create 1.451000 0.031000 1.482000 ( 1.488085)
46
- #create 1.654000 0.016000 1.670000 ( 1.662095)
47
- #create 1.794000 0.015000 1.809000 ( 1.819104)
48
- #create 1.997000 0.000000 1.997000 ( 1.986114)
49
- #create 1.934000 0.000000 1.934000 ( 1.930110)
50
- #create 2.075000 0.000000 2.075000 ( 2.087119)
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{chingu}
8
- s.version = "0.8rc2"
8
+ s.version = "0.8rc3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["ippa"]
12
- s.date = %q{2010-11-17}
12
+ s.date = %q{2010-12-12}
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 = [
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
23
23
  "README.rdoc",
24
24
  "Rakefile",
25
25
  "benchmarks/README.txt",
26
+ "benchmarks/arrays_bench.rb",
26
27
  "benchmarks/benchmark.rb",
27
28
  "benchmarks/benchmark3.rb",
28
29
  "benchmarks/benchmark4.rb",
@@ -158,16 +159,23 @@ Gem::Specification.new do |s|
158
159
  "lib/chingu/traits/viewport.rb",
159
160
  "lib/chingu/viewport.rb",
160
161
  "lib/chingu/window.rb",
162
+ "spec/chingu/animation_spec.rb",
163
+ "spec/chingu/assets_spec.rb",
164
+ "spec/chingu/basic_game_object_spec.rb",
161
165
  "spec/chingu/fpscounter_spec.rb",
166
+ "spec/chingu/game_object_list_spec.rb",
162
167
  "spec/chingu/game_object_spec.rb",
168
+ "spec/chingu/game_state_manager_spec.rb",
163
169
  "spec/chingu/helpers/input_client_spec.rb",
164
170
  "spec/chingu/helpers/input_dispatcher_spec.rb",
165
171
  "spec/chingu/helpers/options_setter_spec.rb",
172
+ "spec/chingu/images/droid_11x15.bmp",
166
173
  "spec/chingu/images/rect_20x20.png",
167
174
  "spec/chingu/inflector_spec.rb",
168
175
  "spec/chingu/input_spec.rb",
169
176
  "spec/chingu/parallax_spec.rb",
170
177
  "spec/chingu/text_spec.rb",
178
+ "spec/chingu/window_spec.rb",
171
179
  "spec/spec_helper.rb",
172
180
  "specs.watchr"
173
181
  ]
@@ -206,8 +214,13 @@ Gem::Specification.new do |s|
206
214
  "examples/game1.rb",
207
215
  "examples/game_of_life.rb",
208
216
  "examples/tool1_input_codes.rb",
217
+ "spec/chingu/animation_spec.rb",
218
+ "spec/chingu/assets_spec.rb",
219
+ "spec/chingu/basic_game_object_spec.rb",
209
220
  "spec/chingu/fpscounter_spec.rb",
221
+ "spec/chingu/game_object_list_spec.rb",
210
222
  "spec/chingu/game_object_spec.rb",
223
+ "spec/chingu/game_state_manager_spec.rb",
211
224
  "spec/chingu/helpers/input_client_spec.rb",
212
225
  "spec/chingu/helpers/input_dispatcher_spec.rb",
213
226
  "spec/chingu/helpers/options_setter_spec.rb",
@@ -215,6 +228,7 @@ Gem::Specification.new do |s|
215
228
  "spec/chingu/input_spec.rb",
216
229
  "spec/chingu/parallax_spec.rb",
217
230
  "spec/chingu/text_spec.rb",
231
+ "spec/chingu/window_spec.rb",
218
232
  "spec/spec_helper.rb"
219
233
  ]
220
234
 
@@ -25,7 +25,7 @@ class Play < Chingu::GameState
25
25
  every(1000) { Plane.create(:x => 10, :y => 350 + rand(20), :velocity => [1,0]) }
26
26
  every(500) { FireBullet.create(:x => 10, :y => 370, :velocity_x => 1) }
27
27
  every(500) { Star.create(:x => 400, :y => 400, :velocity => [-2,-rand*2]) }
28
- #every(400) { Heli.create(:x => 10, :y => 10, :velocity_x => 1) }
28
+ every(1400) { Heli.create(:x => 40, :y => 40, :velocity_x => 1) }
29
29
  end
30
30
 
31
31
  def update
@@ -33,27 +33,32 @@ class Play < Chingu::GameState
33
33
  game_objects.select { |game_object| game_object.outside_window? }.each(&:destroy)
34
34
  $window.caption = "game_objects: #{game_objects.size}"
35
35
  end
36
+
37
+ def draw
38
+ fill(Gosu::Color::GRAY)
39
+ super
40
+ end
36
41
  end
37
42
 
38
43
  class Actor < GameObject
39
44
  trait :velocity
40
45
 
41
46
  def setup
42
- @image = Image["#{self.filename}.png"] rescue nil
47
+ @image = Image["#{self.filename}.png"]
43
48
  @zorder = 10
44
49
  end
45
50
 
46
51
  end
47
-
48
52
  class Spaceship < Actor; end # spaceship.png will be loaded
49
53
  class Plane < Actor; end # plane.png will be loaded
50
54
  class FireBullet < Actor; end # fire_bullet.png will be loaded
51
55
 
52
56
  #
53
- # droid_11x16.png will be loaded and animated with :delay parameter, each frame beeing 11 x 16 pixels
57
+ # droid_11x15.png will be loaded and animated with :delay parameter, each frame beeing 11 x 15 pixels
54
58
  #
55
- class Droid < Actor
56
- trait :animation, :delay => 200
59
+ class Droid < GameObject
60
+ trait :velocity
61
+ trait :animation, :delay => 200, :size => [11,15]
57
62
 
58
63
  def update
59
64
  @image = self.animation.next if self.animation
@@ -64,12 +69,12 @@ end
64
69
  # heli.png will be loaded
65
70
  # since it doesn't contain any framesize information, chingu will assume same width and height
66
71
  #
67
- class Heli < Actor
68
- trait :animation, :delay => 200
72
+ class Heli < GameObject
73
+ trait :velocity
74
+ trait :animation, :delay => 200, :size => [32,32]
69
75
 
70
76
  def update
71
77
  @image = self.animation.next if self.animation
72
- p self.animation
73
78
  end
74
79
  end
75
80
 
@@ -1,12 +1,4 @@
1
1
  ---
2
- - Star:
3
- :x: 1093.41111529021
4
- :y: 5.51124415160293
5
- :angle: 0
6
- :zorder: 100
7
- :factor_x: 1
8
- :factor_y: 1
9
- :color: 4292071387
10
2
  - Star:
11
3
  :x: 936.0
12
4
  :y: 200.0
@@ -14,31 +6,7 @@
14
6
  :zorder: 100
15
7
  :factor_x: 1
16
8
  :factor_y: 1
17
- :color: 4282437437
18
- - Star:
19
- :x: 1504.0
20
- :y: 544.0
21
- :angle: 0
22
- :zorder: 100
23
- :factor_x: 1
24
- :factor_y: 1
25
- :color: 4288451529
26
- - Star:
27
- :x: 1072.0
28
- :y: 1112.0
29
- :angle: 0
30
- :zorder: 100
31
- :factor_x: 1
32
- :factor_y: 1
33
- :color: 4286098571
34
- - Star:
35
- :x: 64.0
36
- :y: 1152.0
37
- :angle: 0
38
- :zorder: 100
39
- :factor_x: 1
40
- :factor_y: 1
41
- :color: 4293715821
9
+ :alpha: 255
42
10
  - Star:
43
11
  :x: 896.0
44
12
  :y: 912.0
@@ -46,23 +14,7 @@
46
14
  :zorder: 100
47
15
  :factor_x: 1
48
16
  :factor_y: 1
49
- :color: 4284874301
50
- - Star:
51
- :x: 232.0
52
- :y: 1072.0
53
- :angle: 0
54
- :zorder: 100
55
- :factor_x: 1
56
- :factor_y: 1
57
- :color: 4287386320
58
- - Star:
59
- :x: 1328.51127397829
60
- :y: 130.436347265118
61
- :angle: 0
62
- :zorder: 100
63
- :factor_x: 1
64
- :factor_y: 1
65
- :color: 4283203972
17
+ :alpha: 255
66
18
  - Star:
67
19
  :x: 856.0
68
20
  :y: 336.0
@@ -70,39 +22,7 @@
70
22
  :zorder: 100
71
23
  :factor_x: 1
72
24
  :factor_y: 1
73
- :color: 4283552994
74
- - Star:
75
- :x: 1032.0
76
- :y: 1144.0
77
- :angle: 0
78
- :zorder: 100
79
- :factor_x: 1
80
- :factor_y: 1
81
- :color: 4289951224
82
- - Star:
83
- :x: 1056.0
84
- :y: 960.0
85
- :angle: 0
86
- :zorder: 100
87
- :factor_x: 1
88
- :factor_y: 1
89
- :color: 4288468715
90
- - Star:
91
- :x: 1471.78511833082
92
- :y: 251.377538642698
93
- :angle: 0
94
- :zorder: 100
95
- :factor_x: 1
96
- :factor_y: 1
97
- :color: 4292672160
98
- - Star:
99
- :x: 1040.0
100
- :y: 96.0
101
- :angle: 0
102
- :zorder: 100
103
- :factor_x: 1
104
- :factor_y: 1
105
- :color: 4284652721
25
+ :alpha: 255
106
26
  - Star:
107
27
  :x: 520.0
108
28
  :y: 24.0
@@ -110,31 +30,7 @@
110
30
  :zorder: 100
111
31
  :factor_x: 1
112
32
  :factor_y: 1
113
- :color: 4290017954
114
- - Star:
115
- :x: 1400.0
116
- :y: 704.0
117
- :angle: 0
118
- :zorder: 100
119
- :factor_x: 1
120
- :factor_y: 1
121
- :color: 4283924912
122
- - Star:
123
- :x: 1352.0
124
- :y: 1144.0
125
- :angle: 0
126
- :zorder: 100
127
- :factor_x: 1
128
- :factor_y: 1
129
- :color: 4282275163
130
- - Star:
131
- :x: 1088.0
132
- :y: 288.0
133
- :angle: 0
134
- :zorder: 100
135
- :factor_x: 1
136
- :factor_y: 1
137
- :color: 4293571889
33
+ :alpha: 255
138
34
  - Star:
139
35
  :x: 200.0
140
36
  :y: 888.0
@@ -142,7 +38,7 @@
142
38
  :zorder: 100
143
39
  :factor_x: 1
144
40
  :factor_y: 1
145
- :color: 4290827607
41
+ :alpha: 255
146
42
  - StoneWall:
147
43
  :x: 264.0
148
44
  :y: 448.0
@@ -150,7 +46,7 @@
150
46
  :zorder: 100
151
47
  :factor_x: 1
152
48
  :factor_y: 1
153
- :color: 4294967295
49
+ :alpha: 255
154
50
  - StoneWall:
155
51
  :x: 296.0
156
52
  :y: 448.0
@@ -158,7 +54,7 @@
158
54
  :zorder: 100
159
55
  :factor_x: 1
160
56
  :factor_y: 1
161
- :color: 4294967295
57
+ :alpha: 255
162
58
  - StoneWall:
163
59
  :x: 328.0
164
60
  :y: 448.0
@@ -166,7 +62,7 @@
166
62
  :zorder: 100
167
63
  :factor_x: 1
168
64
  :factor_y: 1
169
- :color: 4294967295
65
+ :alpha: 255
170
66
  - StoneWall:
171
67
  :x: 360.0
172
68
  :y: 448.0
@@ -174,7 +70,7 @@
174
70
  :zorder: 100
175
71
  :factor_x: 1
176
72
  :factor_y: 1
177
- :color: 4294967295
73
+ :alpha: 255
178
74
  - StoneWall:
179
75
  :x: 392.0
180
76
  :y: 448.0
@@ -182,7 +78,7 @@
182
78
  :zorder: 100
183
79
  :factor_x: 1
184
80
  :factor_y: 1
185
- :color: 4294967295
81
+ :alpha: 255
186
82
  - StoneWall:
187
83
  :x: 424.0
188
84
  :y: 448.0
@@ -190,7 +86,7 @@
190
86
  :zorder: 100
191
87
  :factor_x: 1
192
88
  :factor_y: 1
193
- :color: 4294967295
89
+ :alpha: 255
194
90
  - StoneWall:
195
91
  :x: 432.0
196
92
  :y: 312.0
@@ -198,7 +94,7 @@
198
94
  :zorder: 100
199
95
  :factor_x: 1
200
96
  :factor_y: 1
201
- :color: 4294967295
97
+ :alpha: 255
202
98
  - StoneWall:
203
99
  :x: 456.0
204
100
  :y: 608.0
@@ -206,7 +102,7 @@
206
102
  :zorder: 100
207
103
  :factor_x: 1
208
104
  :factor_y: 1
209
- :color: 4294967295
105
+ :alpha: 255
210
106
  - StoneWall:
211
107
  :x: 424.0
212
108
  :y: 672.0
@@ -214,7 +110,7 @@
214
110
  :zorder: 100
215
111
  :factor_x: 1
216
112
  :factor_y: 1
217
- :color: 4294967295
113
+ :alpha: 255
218
114
  - StoneWall:
219
115
  :x: 392.0
220
116
  :y: 672.0
@@ -222,7 +118,7 @@
222
118
  :zorder: 100
223
119
  :factor_x: 1
224
120
  :factor_y: 1
225
- :color: 4294967295
121
+ :alpha: 255
226
122
  - StoneWall:
227
123
  :x: 360.0
228
124
  :y: 672.0
@@ -230,7 +126,7 @@
230
126
  :zorder: 100
231
127
  :factor_x: 1
232
128
  :factor_y: 1
233
- :color: 4294967295
129
+ :alpha: 255
234
130
  - StoneWall:
235
131
  :x: 328.0
236
132
  :y: 672.0
@@ -238,7 +134,7 @@
238
134
  :zorder: 100
239
135
  :factor_x: 1
240
136
  :factor_y: 1
241
- :color: 4294967295
137
+ :alpha: 255
242
138
  - StoneWall:
243
139
  :x: 176.0
244
140
  :y: 672.0
@@ -246,7 +142,7 @@
246
142
  :zorder: 100
247
143
  :factor_x: 1
248
144
  :factor_y: 1
249
- :color: 4294967295
145
+ :alpha: 255
250
146
  - StoneWall:
251
147
  :x: 232.0
252
148
  :y: 448.0
@@ -254,7 +150,7 @@
254
150
  :zorder: 100
255
151
  :factor_x: 1
256
152
  :factor_y: 1
257
- :color: 4294967295
153
+ :alpha: 255
258
154
  - StoneWall:
259
155
  :x: 200.0
260
156
  :y: 512.0
@@ -262,7 +158,7 @@
262
158
  :zorder: 100
263
159
  :factor_x: 1
264
160
  :factor_y: 1
265
- :color: 4294967295
161
+ :alpha: 255
266
162
  - StoneWall:
267
163
  :x: 200.0
268
164
  :y: 544.0
@@ -270,7 +166,7 @@
270
166
  :zorder: 100
271
167
  :factor_x: 1
272
168
  :factor_y: 1
273
- :color: 4294967295
169
+ :alpha: 255
274
170
  - StoneWall:
275
171
  :x: 200.0
276
172
  :y: 576.0
@@ -278,7 +174,7 @@
278
174
  :zorder: 100
279
175
  :factor_x: 1
280
176
  :factor_y: 1
281
- :color: 4294967295
177
+ :alpha: 255
282
178
  - StoneWall:
283
179
  :x: 184.0
284
180
  :y: 616.0
@@ -286,7 +182,7 @@
286
182
  :zorder: 100
287
183
  :factor_x: 1
288
184
  :factor_y: 1
289
- :color: 4294967295
185
+ :alpha: 255
290
186
  - StoneWall:
291
187
  :x: 200.0
292
188
  :y: 656.0
@@ -294,7 +190,7 @@
294
190
  :zorder: 100
295
191
  :factor_x: 1
296
192
  :factor_y: 1
297
- :color: 4294967295
193
+ :alpha: 255
298
194
  - StoneWall:
299
195
  :x: 288.0
300
196
  :y: 680.0
@@ -302,7 +198,7 @@
302
198
  :zorder: 100
303
199
  :factor_x: 1
304
200
  :factor_y: 1
305
- :color: 4294967295
201
+ :alpha: 255
306
202
  - StoneWall:
307
203
  :x: 72.0
308
204
  :y: 272.0
@@ -310,7 +206,7 @@
310
206
  :zorder: 100
311
207
  :factor_x: 1
312
208
  :factor_y: 1
313
- :color: 4294967295
209
+ :alpha: 255
314
210
  - StoneWall:
315
211
  :x: 56.0
316
212
  :y: 256.0
@@ -318,7 +214,7 @@
318
214
  :zorder: 101
319
215
  :factor_x: 1
320
216
  :factor_y: 1
321
- :color: 4294967295
217
+ :alpha: 255
322
218
  - StoneWall:
323
219
  :x: 184.0
324
220
  :y: 336.0
@@ -326,7 +222,7 @@
326
222
  :zorder: 101
327
223
  :factor_x: 1
328
224
  :factor_y: 1
329
- :color: 4294967295
225
+ :alpha: 255
330
226
  - StoneWall:
331
227
  :x: 80.0
332
228
  :y: 232.0
@@ -334,7 +230,7 @@
334
230
  :zorder: 100
335
231
  :factor_x: 1
336
232
  :factor_y: 1
337
- :color: 4294967295
233
+ :alpha: 255
338
234
  - StoneWall:
339
235
  :x: 488.0
340
236
  :y: 936.0
@@ -342,7 +238,7 @@
342
238
  :zorder: 100
343
239
  :factor_x: 1
344
240
  :factor_y: 1
345
- :color: 4294967295
241
+ :alpha: 255
346
242
  - StoneWall:
347
243
  :x: 32.0
348
244
  :y: 248.0
@@ -350,7 +246,7 @@
350
246
  :zorder: 101
351
247
  :factor_x: 1
352
248
  :factor_y: 1
353
- :color: 4294967295
249
+ :alpha: 255
354
250
  - StoneWall:
355
251
  :x: 160.0
356
252
  :y: 336.0
@@ -358,7 +254,7 @@
358
254
  :zorder: 100
359
255
  :factor_x: 1
360
256
  :factor_y: 1
361
- :color: 4294967295
257
+ :alpha: 255
362
258
  - StoneWall:
363
259
  :x: 288.0
364
260
  :y: 296.0
@@ -366,7 +262,7 @@
366
262
  :zorder: 100
367
263
  :factor_x: 1
368
264
  :factor_y: 1
369
- :color: 4294967295
265
+ :alpha: 255
370
266
  - StoneWall:
371
267
  :x: 320.0
372
268
  :y: 48.0
@@ -374,7 +270,7 @@
374
270
  :zorder: 100
375
271
  :factor_x: 1
376
272
  :factor_y: 1
377
- :color: 4294967295
273
+ :alpha: 255
378
274
  - StoneWall:
379
275
  :x: 272.0
380
276
  :y: 72.0
@@ -382,7 +278,7 @@
382
278
  :zorder: 100
383
279
  :factor_x: 1
384
280
  :factor_y: 1
385
- :color: 4294967295
281
+ :alpha: 255
386
282
  - StoneWall:
387
283
  :x: 328.0
388
284
  :y: 16.0
@@ -390,7 +286,7 @@
390
286
  :zorder: 100
391
287
  :factor_x: 1
392
288
  :factor_y: 1
393
- :color: 4294967295
289
+ :alpha: 255
394
290
  - StoneWall:
395
291
  :x: 328.0
396
292
  :y: 88.0
@@ -398,7 +294,7 @@
398
294
  :zorder: 100
399
295
  :factor_x: 1
400
296
  :factor_y: 1
401
- :color: 4294967295
297
+ :alpha: 255
402
298
  - StoneWall:
403
299
  :x: 360.0
404
300
  :y: 88.0
@@ -406,7 +302,7 @@
406
302
  :zorder: 100
407
303
  :factor_x: 1
408
304
  :factor_y: 1
409
- :color: 4294967295
305
+ :alpha: 255
410
306
  - StoneWall:
411
307
  :x: 392.0
412
308
  :y: 88.0
@@ -414,7 +310,7 @@
414
310
  :zorder: 100
415
311
  :factor_x: 1
416
312
  :factor_y: 1
417
- :color: 4294967295
313
+ :alpha: 255
418
314
  - StoneWall:
419
315
  :x: 424.0
420
316
  :y: 80.0
@@ -422,7 +318,7 @@
422
318
  :zorder: 100
423
319
  :factor_x: 1
424
320
  :factor_y: 1
425
- :color: 4294967295
321
+ :alpha: 255
426
322
  - StoneWall:
427
323
  :x: 456.0
428
324
  :y: 80.0
@@ -430,7 +326,7 @@
430
326
  :zorder: 100
431
327
  :factor_x: 1
432
328
  :factor_y: 1
433
- :color: 4294967295
329
+ :alpha: 255
434
330
  - StoneWall:
435
331
  :x: 272.0
436
332
  :y: 232.0
@@ -438,7 +334,7 @@
438
334
  :zorder: 100
439
335
  :factor_x: 1
440
336
  :factor_y: 1
441
- :color: 4294967295
337
+ :alpha: 255
442
338
  - StoneWall:
443
339
  :x: 312.0
444
340
  :y: 232.0
@@ -446,7 +342,7 @@
446
342
  :zorder: 100
447
343
  :factor_x: 1
448
344
  :factor_y: 1
449
- :color: 4294967295
345
+ :alpha: 255
450
346
  - StoneWall:
451
347
  :x: 392.0
452
348
  :y: 280.0
@@ -454,7 +350,7 @@
454
350
  :zorder: 100
455
351
  :factor_x: 1
456
352
  :factor_y: 1
457
- :color: 4294967295
353
+ :alpha: 255
458
354
  - StoneWall:
459
355
  :x: 264.0
460
356
  :y: 360.0
@@ -462,7 +358,7 @@
462
358
  :zorder: 100
463
359
  :factor_x: 1
464
360
  :factor_y: 1
465
- :color: 4294967295
361
+ :alpha: 255
466
362
  - StoneWall:
467
363
  :x: 488.0
468
364
  :y: 320.0
@@ -470,7 +366,7 @@
470
366
  :zorder: 100
471
367
  :factor_x: 1
472
368
  :factor_y: 1
473
- :color: 4294967295
369
+ :alpha: 255
474
370
  - StoneWall:
475
371
  :x: 488.0
476
372
  :y: 88.0
@@ -478,7 +374,7 @@
478
374
  :zorder: 100
479
375
  :factor_x: 1
480
376
  :factor_y: 1
481
- :color: 4294967295
377
+ :alpha: 255
482
378
  - StoneWall:
483
379
  :x: 512.0
484
380
  :y: 72.0
@@ -486,7 +382,7 @@
486
382
  :zorder: 100
487
383
  :factor_x: 1
488
384
  :factor_y: 1
489
- :color: 4294967295
385
+ :alpha: 255
490
386
  - StoneWall:
491
387
  :x: 544.0
492
388
  :y: 72.0
@@ -494,7 +390,7 @@
494
390
  :zorder: 100
495
391
  :factor_x: 1
496
392
  :factor_y: 1
497
- :color: 4294967295
393
+ :alpha: 255
498
394
  - StoneWall:
499
395
  :x: 520.0
500
396
  :y: 248.0
@@ -502,7 +398,7 @@
502
398
  :zorder: 100
503
399
  :factor_x: 1
504
400
  :factor_y: 1
505
- :color: 4294967295
401
+ :alpha: 255
506
402
  - StoneWall:
507
403
  :x: 552.0
508
404
  :y: 232.0
@@ -510,7 +406,7 @@
510
406
  :zorder: 100
511
407
  :factor_x: 1
512
408
  :factor_y: 1
513
- :color: 4294967295
409
+ :alpha: 255
514
410
  - StoneWall:
515
411
  :x: 584.0
516
412
  :y: 80.0
@@ -518,7 +414,7 @@
518
414
  :zorder: 100
519
415
  :factor_x: 1
520
416
  :factor_y: 1
521
- :color: 4294967295
417
+ :alpha: 255
522
418
  - StoneWall:
523
419
  :x: 608.0
524
420
  :y: 80.0
@@ -526,7 +422,7 @@
526
422
  :zorder: 100
527
423
  :factor_x: 1
528
424
  :factor_y: 1
529
- :color: 4294967295
425
+ :alpha: 255
530
426
  - StoneWall:
531
427
  :x: 664.0
532
428
  :y: 88.0
@@ -534,7 +430,7 @@
534
430
  :zorder: 100
535
431
  :factor_x: 1
536
432
  :factor_y: 1
537
- :color: 4294967295
433
+ :alpha: 255
538
434
  - StoneWall:
539
435
  :x: 656.0
540
436
  :y: 128.0
@@ -542,7 +438,7 @@
542
438
  :zorder: 100
543
439
  :factor_x: 1
544
440
  :factor_y: 1
545
- :color: 4294967295
441
+ :alpha: 255
546
442
  - StoneWall:
547
443
  :x: 680.0
548
444
  :y: 208.0
@@ -550,7 +446,7 @@
550
446
  :zorder: 100
551
447
  :factor_x: 1
552
448
  :factor_y: 1
553
- :color: 4294967295
449
+ :alpha: 255
554
450
  - StoneWall:
555
451
  :x: 680.0
556
452
  :y: 240.0
@@ -558,7 +454,7 @@
558
454
  :zorder: 100
559
455
  :factor_x: 1
560
456
  :factor_y: 1
561
- :color: 4294967295
457
+ :alpha: 255
562
458
  - StoneWall:
563
459
  :x: 552.0
564
460
  :y: 264.0
@@ -566,7 +462,7 @@
566
462
  :zorder: 100
567
463
  :factor_x: 1
568
464
  :factor_y: 1
569
- :color: 4294967295
465
+ :alpha: 255
570
466
  - StoneWall:
571
467
  :x: 680.0
572
468
  :y: 272.0
@@ -574,7 +470,7 @@
574
470
  :zorder: 100
575
471
  :factor_x: 1
576
472
  :factor_y: 1
577
- :color: 4294967295
473
+ :alpha: 255
578
474
  - StoneWall:
579
475
  :x: 512.0
580
476
  :y: 288.0
@@ -582,7 +478,7 @@
582
478
  :zorder: 100
583
479
  :factor_x: 1
584
480
  :factor_y: 1
585
- :color: 4294967295
481
+ :alpha: 255
586
482
  - StoneWall:
587
483
  :x: 680.0
588
484
  :y: 304.0
@@ -590,7 +486,7 @@
590
486
  :zorder: 100
591
487
  :factor_x: 1
592
488
  :factor_y: 1
593
- :color: 4294967295
489
+ :alpha: 255
594
490
  - StoneWall:
595
491
  :x: 680.0
596
492
  :y: 336.0
@@ -598,7 +494,7 @@
598
494
  :zorder: 100
599
495
  :factor_x: 1
600
496
  :factor_y: 1
601
- :color: 4294967295
497
+ :alpha: 255
602
498
  - StoneWall:
603
499
  :x: 520.0
604
500
  :y: 328.0
@@ -606,7 +502,7 @@
606
502
  :zorder: 100
607
503
  :factor_x: 1
608
504
  :factor_y: 1
609
- :color: 4294967295
505
+ :alpha: 255
610
506
  - StoneWall:
611
507
  :x: 520.0
612
508
  :y: 368.0
@@ -614,7 +510,7 @@
614
510
  :zorder: 100
615
511
  :factor_x: 1
616
512
  :factor_y: 1
617
- :color: 4294967295
513
+ :alpha: 255
618
514
  - StoneWall:
619
515
  :x: 528.0
620
516
  :y: 384.0
@@ -622,7 +518,7 @@
622
518
  :zorder: 100
623
519
  :factor_x: 1
624
520
  :factor_y: 1
625
- :color: 4294967295
521
+ :alpha: 255
626
522
  - StoneWall:
627
523
  :x: 520.0
628
524
  :y: 416.0
@@ -630,7 +526,7 @@
630
526
  :zorder: 100
631
527
  :factor_x: 1
632
528
  :factor_y: 1
633
- :color: 4294967295
529
+ :alpha: 255
634
530
  - StoneWall:
635
531
  :x: 520.0
636
532
  :y: 448.0
@@ -638,7 +534,7 @@
638
534
  :zorder: 100
639
535
  :factor_x: 1
640
536
  :factor_y: 1
641
- :color: 4294967295
537
+ :alpha: 255
642
538
  - StoneWall:
643
539
  :x: 528.0
644
540
  :y: 496.0
@@ -646,7 +542,7 @@
646
542
  :zorder: 100
647
543
  :factor_x: 1
648
544
  :factor_y: 1
649
- :color: 4294967295
545
+ :alpha: 255
650
546
  - StoneWall:
651
547
  :x: 512.0
652
548
  :y: 472.0
@@ -654,7 +550,7 @@
654
550
  :zorder: 100
655
551
  :factor_x: 1
656
552
  :factor_y: 1
657
- :color: 4294967295
553
+ :alpha: 255
658
554
  - StoneWall:
659
555
  :x: 520.0
660
556
  :y: 520.0
@@ -662,7 +558,7 @@
662
558
  :zorder: 100
663
559
  :factor_x: 1
664
560
  :factor_y: 1
665
- :color: 4294967295
561
+ :alpha: 255
666
562
  - StoneWall:
667
563
  :x: 680.0
668
564
  :y: 368.0
@@ -670,7 +566,7 @@
670
566
  :zorder: 100
671
567
  :factor_x: 1
672
568
  :factor_y: 1
673
- :color: 4294967295
569
+ :alpha: 255
674
570
  - StoneWall:
675
571
  :x: 648.0
676
572
  :y: 400.0
@@ -678,7 +574,7 @@
678
574
  :zorder: 100
679
575
  :factor_x: 1
680
576
  :factor_y: 1
681
- :color: 4294967295
577
+ :alpha: 255
682
578
  - StoneWall:
683
579
  :x: 584.0
684
580
  :y: 576.0
@@ -686,7 +582,7 @@
686
582
  :zorder: 100
687
583
  :factor_x: 1
688
584
  :factor_y: 1
689
- :color: 4294967295
585
+ :alpha: 255
690
586
  - StoneWall:
691
587
  :x: 624.0
692
588
  :y: 584.0
@@ -694,7 +590,7 @@
694
590
  :zorder: 100
695
591
  :factor_x: 1
696
592
  :factor_y: 1
697
- :color: 4294967295
593
+ :alpha: 255
698
594
  - StoneWall:
699
595
  :x: 648.0
700
596
  :y: 584.0
@@ -702,7 +598,7 @@
702
598
  :zorder: 100
703
599
  :factor_x: 1
704
600
  :factor_y: 1
705
- :color: 4294967295
601
+ :alpha: 255
706
602
  - StoneWall:
707
603
  :x: 672.0
708
604
  :y: 584.0
@@ -710,7 +606,7 @@
710
606
  :zorder: 100
711
607
  :factor_x: 1
712
608
  :factor_y: 1
713
- :color: 4294967295
609
+ :alpha: 255
714
610
  - StoneWall:
715
611
  :x: 688.0
716
612
  :y: 576.0
@@ -718,7 +614,7 @@
718
614
  :zorder: 100
719
615
  :factor_x: 1
720
616
  :factor_y: 1
721
- :color: 4294967295
617
+ :alpha: 255
722
618
  - StoneWall:
723
619
  :x: 744.0
724
620
  :y: 552.0
@@ -726,7 +622,7 @@
726
622
  :zorder: 100
727
623
  :factor_x: 1
728
624
  :factor_y: 1
729
- :color: 4294967295
625
+ :alpha: 255
730
626
  - StoneWall:
731
627
  :x: 776.0
732
628
  :y: 584.0
@@ -734,7 +630,7 @@
734
630
  :zorder: 100
735
631
  :factor_x: 1
736
632
  :factor_y: 1
737
- :color: 4294967295
633
+ :alpha: 255
738
634
  - StoneWall:
739
635
  :x: 808.0
740
636
  :y: 584.0
@@ -742,7 +638,7 @@
742
638
  :zorder: 100
743
639
  :factor_x: 1
744
640
  :factor_y: 1
745
- :color: 4294967295
641
+ :alpha: 255
746
642
  - StoneWall:
747
643
  :x: 840.0
748
644
  :y: 584.0
@@ -750,7 +646,7 @@
750
646
  :zorder: 100
751
647
  :factor_x: 1
752
648
  :factor_y: 1
753
- :color: 4294967295
649
+ :alpha: 255
754
650
  - StoneWall:
755
651
  :x: 888.0
756
652
  :y: 584.0
@@ -758,7 +654,7 @@
758
654
  :zorder: 100
759
655
  :factor_x: 1
760
656
  :factor_y: 1
761
- :color: 4294967295
657
+ :alpha: 255
762
658
  - StoneWall:
763
659
  :x: 912.0
764
660
  :y: 576.0
@@ -766,7 +662,7 @@
766
662
  :zorder: 100
767
663
  :factor_x: 1
768
664
  :factor_y: 1
769
- :color: 4294967295
665
+ :alpha: 255
770
666
  - StoneWall:
771
667
  :x: 936.0
772
668
  :y: 584.0
@@ -774,7 +670,7 @@
774
670
  :zorder: 100
775
671
  :factor_x: 1
776
672
  :factor_y: 1
777
- :color: 4294967295
673
+ :alpha: 255
778
674
  - StoneWall:
779
675
  :x: 984.0
780
676
  :y: 584.0
@@ -782,23 +678,7 @@
782
678
  :zorder: 100
783
679
  :factor_x: 1
784
680
  :factor_y: 1
785
- :color: 4294967295
786
- - StoneWall:
787
- :x: 1008.0
788
- :y: 592.0
789
- :angle: 0
790
- :zorder: 100
791
- :factor_x: 1
792
- :factor_y: 1
793
- :color: 4294967295
794
- - StoneWall:
795
- :x: 1048.0
796
- :y: 600.0
797
- :angle: 0
798
- :zorder: 100
799
- :factor_x: 1
800
- :factor_y: 1
801
- :color: 4294967295
681
+ :alpha: 255
802
682
  - StoneWall:
803
683
  :x: 680.0
804
684
  :y: 400.0
@@ -806,7 +686,7 @@
806
686
  :zorder: 100
807
687
  :factor_x: 1
808
688
  :factor_y: 1
809
- :color: 4294967295
689
+ :alpha: 255
810
690
  - StoneWall:
811
691
  :x: 712.0
812
692
  :y: 400.0
@@ -814,7 +694,7 @@
814
694
  :zorder: 100
815
695
  :factor_x: 1
816
696
  :factor_y: 1
817
- :color: 4294967295
697
+ :alpha: 255
818
698
  - StoneWall:
819
699
  :x: 744.0
820
700
  :y: 400.0
@@ -822,7 +702,7 @@
822
702
  :zorder: 100
823
703
  :factor_x: 1
824
704
  :factor_y: 1
825
- :color: 4294967295
705
+ :alpha: 255
826
706
  - StoneWall:
827
707
  :x: 776.0
828
708
  :y: 400.0
@@ -830,7 +710,7 @@
830
710
  :zorder: 100
831
711
  :factor_x: 1
832
712
  :factor_y: 1
833
- :color: 4294967295
713
+ :alpha: 255
834
714
  - StoneWall:
835
715
  :x: 808.0
836
716
  :y: 400.0
@@ -838,15 +718,7 @@
838
718
  :zorder: 100
839
719
  :factor_x: 1
840
720
  :factor_y: 1
841
- :color: 4294967295
842
- - StoneWall:
843
- :x: 1072.0
844
- :y: 600.0
845
- :angle: 0
846
- :zorder: 100
847
- :factor_x: 1
848
- :factor_y: 1
849
- :color: 4294967295
721
+ :alpha: 255
850
722
  - StoneWall:
851
723
  :x: 360.0
852
724
  :y: 232.0
@@ -854,7 +726,7 @@
854
726
  :zorder: 100
855
727
  :factor_x: 1
856
728
  :factor_y: 1
857
- :color: 4294967295
729
+ :alpha: 255
858
730
  - StoneWall:
859
731
  :x: 840.0
860
732
  :y: 400.0
@@ -862,7 +734,7 @@
862
734
  :zorder: 100
863
735
  :factor_x: 1
864
736
  :factor_y: 1
865
- :color: 4294967295
737
+ :alpha: 255
866
738
  - StoneWall:
867
739
  :x: 872.0
868
740
  :y: 400.0
@@ -870,7 +742,7 @@
870
742
  :zorder: 100
871
743
  :factor_x: 1
872
744
  :factor_y: 1
873
- :color: 4294967295
745
+ :alpha: 255
874
746
  - StoneWall:
875
747
  :x: 904.0
876
748
  :y: 400.0
@@ -878,7 +750,7 @@
878
750
  :zorder: 100
879
751
  :factor_x: 1
880
752
  :factor_y: 1
881
- :color: 4294967295
753
+ :alpha: 255
882
754
  - StoneWall:
883
755
  :x: 936.0
884
756
  :y: 432.0
@@ -886,7 +758,7 @@
886
758
  :zorder: 100
887
759
  :factor_x: 1
888
760
  :factor_y: 1
889
- :color: 4294967295
761
+ :alpha: 255
890
762
  - StoneWall:
891
763
  :x: 968.0
892
764
  :y: 400.0
@@ -894,7 +766,7 @@
894
766
  :zorder: 100
895
767
  :factor_x: 1
896
768
  :factor_y: 1
897
- :color: 4294967295
769
+ :alpha: 255
898
770
  - StoneWall:
899
771
  :x: 936.0
900
772
  :y: 368.0
@@ -902,7 +774,7 @@
902
774
  :zorder: 100
903
775
  :factor_x: 1
904
776
  :factor_y: 1
905
- :color: 4294967295
777
+ :alpha: 255
906
778
  - StoneWall:
907
779
  :x: 744.0
908
780
  :y: 584.0
@@ -910,7 +782,7 @@
910
782
  :zorder: 100
911
783
  :factor_x: 1
912
784
  :factor_y: 1
913
- :color: 4294967295
785
+ :alpha: 255
914
786
  - StoneWall:
915
787
  :x: 776.0
916
788
  :y: 616.0
@@ -918,7 +790,7 @@
918
790
  :zorder: 100
919
791
  :factor_x: 1
920
792
  :factor_y: 1
921
- :color: 4294967295
793
+ :alpha: 255
922
794
  - StoneWall:
923
795
  :x: 784.0
924
796
  :y: 648.0
@@ -926,7 +798,7 @@
926
798
  :zorder: 100
927
799
  :factor_x: 1
928
800
  :factor_y: 1
929
- :color: 4294967295
801
+ :alpha: 255
930
802
  - StoneWall:
931
803
  :x: 776.0
932
804
  :y: 680.0
@@ -934,7 +806,7 @@
934
806
  :zorder: 100
935
807
  :factor_x: 1
936
808
  :factor_y: 1
937
- :color: 4294967295
809
+ :alpha: 255
938
810
  - StoneWall:
939
811
  :x: 784.0
940
812
  :y: 712.0
@@ -942,7 +814,7 @@
942
814
  :zorder: 100
943
815
  :factor_x: 1
944
816
  :factor_y: 1
945
- :color: 4294967295
817
+ :alpha: 255
946
818
  - StoneWall:
947
819
  :x: 744.0
948
820
  :y: 744.0
@@ -950,7 +822,7 @@
950
822
  :zorder: 100
951
823
  :factor_x: 1
952
824
  :factor_y: 1
953
- :color: 4294967295
825
+ :alpha: 255
954
826
  - StoneWall:
955
827
  :x: 808.0
956
828
  :y: 720.0
@@ -958,7 +830,7 @@
958
830
  :zorder: 100
959
831
  :factor_x: 1
960
832
  :factor_y: 1
961
- :color: 4294967295
833
+ :alpha: 255
962
834
  - StoneWall:
963
835
  :x: 824.0
964
836
  :y: 744.0
@@ -966,39 +838,7 @@
966
838
  :zorder: 100
967
839
  :factor_x: 1
968
840
  :factor_y: 1
969
- :color: 4294967295
970
- - Star:
971
- :x: 1093.41111529021
972
- :y: 5.51124415160293
973
- :angle: 0
974
- :zorder: 100
975
- :factor_x: 1
976
- :factor_y: 1
977
- :color: 4282440878
978
- - Star:
979
- :x: 1021.24698547035
980
- :y: 233.697577016662
981
- :angle: 0
982
- :zorder: 100
983
- :factor_x: 1
984
- :factor_y: 1
985
- :color: 4291082941
986
- - Star:
987
- :x: 1501.26322692051
988
- :y: 521.751991504935
989
- :angle: 0
990
- :zorder: 100
991
- :factor_x: 1
992
- :factor_y: 1
993
- :color: 4287321129
994
- - Star:
995
- :x: 1036.07940582127
996
- :y: 1077.39024843889
997
- :angle: 0
998
- :zorder: 100
999
- :factor_x: 1
1000
- :factor_y: 1
1001
- :color: 4292962121
841
+ :alpha: 255
1002
842
  - Star:
1003
843
  :x: 88.0
1004
844
  :y: 920.0
@@ -1006,7 +846,7 @@
1006
846
  :zorder: 100
1007
847
  :factor_x: 1
1008
848
  :factor_y: 1
1009
- :color: 4291813365
849
+ :alpha: 255
1010
850
  - Star:
1011
851
  :x: 976.0
1012
852
  :y: 896.0
@@ -1014,23 +854,7 @@
1014
854
  :zorder: 100
1015
855
  :factor_x: 1
1016
856
  :factor_y: 1
1017
- :color: 4286083761
1018
- - Star:
1019
- :x: 193.633994281044
1020
- :y: 1104.56305326903
1021
- :angle: 0
1022
- :zorder: 100
1023
- :factor_x: 1
1024
- :factor_y: 1
1025
- :color: 4292468666
1026
- - Star:
1027
- :x: 1328.51127397829
1028
- :y: 130.436347265118
1029
- :angle: 0
1030
- :zorder: 100
1031
- :factor_x: 1
1032
- :factor_y: 1
1033
- :color: 4289286295
857
+ :alpha: 255
1034
858
  - Star:
1035
859
  :x: 850.231826004726
1036
860
  :y: 714.517551818006
@@ -1038,39 +862,7 @@
1038
862
  :zorder: 100
1039
863
  :factor_x: 1
1040
864
  :factor_y: 1
1041
- :color: 4287297423
1042
- - Star:
1043
- :x: 987.983860738842
1044
- :y: 1088.82089083583
1045
- :angle: 0
1046
- :zorder: 100
1047
- :factor_x: 1
1048
- :factor_y: 1
1049
- :color: 4292131257
1050
- - Star:
1051
- :x: 1104.0
1052
- :y: 1024.0
1053
- :angle: 0
1054
- :zorder: 100
1055
- :factor_x: 1
1056
- :factor_y: 1
1057
- :color: 4288041566
1058
- - Star:
1059
- :x: 1471.78511833082
1060
- :y: 251.377538642698
1061
- :angle: 0
1062
- :zorder: 100
1063
- :factor_x: 1
1064
- :factor_y: 1
1065
- :color: 4285005534
1066
- - Star:
1067
- :x: 1106.18505509065
1068
- :y: 63.8445958640463
1069
- :angle: 0
1070
- :zorder: 100
1071
- :factor_x: 1
1072
- :factor_y: 1
1073
- :color: 4283489684
865
+ :alpha: 255
1074
866
  - Star:
1075
867
  :x: 480.0
1076
868
  :y: 24.0
@@ -1078,31 +870,7 @@
1078
870
  :zorder: 100
1079
871
  :factor_x: 1
1080
872
  :factor_y: 1
1081
- :color: 4282410862
1082
- - Star:
1083
- :x: 1383.07846779147
1084
- :y: 1099.94904037489
1085
- :angle: 0
1086
- :zorder: 100
1087
- :factor_x: 1
1088
- :factor_y: 1
1089
- :color: 4293710310
1090
- - Star:
1091
- :x: 1136.91212394409
1092
- :y: 330.048667889083
1093
- :angle: 0
1094
- :zorder: 100
1095
- :factor_x: 1
1096
- :factor_y: 1
1097
- :color: 4292323247
1098
- - Star:
1099
- :x: 143.727252338061
1100
- :y: 1074.3178815527
1101
- :angle: 0
1102
- :zorder: 100
1103
- :factor_x: 1
1104
- :factor_y: 1
1105
- :color: 4291021978
873
+ :alpha: 255
1106
874
  - StoneWall:
1107
875
  :x: 264.0
1108
876
  :y: 496.0
@@ -1110,7 +878,7 @@
1110
878
  :zorder: 103
1111
879
  :factor_x: 1
1112
880
  :factor_y: 1
1113
- :color: 4294967295
881
+ :alpha: 255
1114
882
  - StoneWall:
1115
883
  :x: 296.0
1116
884
  :y: 480.0
@@ -1118,7 +886,7 @@
1118
886
  :zorder: 100
1119
887
  :factor_x: 1
1120
888
  :factor_y: 1
1121
- :color: 4294967295
889
+ :alpha: 255
1122
890
  - StoneWall:
1123
891
  :x: 328.0
1124
892
  :y: 480.0
@@ -1126,7 +894,7 @@
1126
894
  :zorder: 100
1127
895
  :factor_x: 1
1128
896
  :factor_y: 1
1129
- :color: 4294967295
897
+ :alpha: 255
1130
898
  - StoneWall:
1131
899
  :x: 360.0
1132
900
  :y: 480.0
@@ -1134,7 +902,7 @@
1134
902
  :zorder: 100
1135
903
  :factor_x: 1
1136
904
  :factor_y: 1
1137
- :color: 4294967295
905
+ :alpha: 255
1138
906
  - StoneWall:
1139
907
  :x: 392.0
1140
908
  :y: 480.0
@@ -1142,7 +910,7 @@
1142
910
  :zorder: 100
1143
911
  :factor_x: 1
1144
912
  :factor_y: 1
1145
- :color: 4294967295
913
+ :alpha: 255
1146
914
  - StoneWall:
1147
915
  :x: 424.0
1148
916
  :y: 480.0
@@ -1150,7 +918,7 @@
1150
918
  :zorder: 100
1151
919
  :factor_x: 1
1152
920
  :factor_y: 1
1153
- :color: 4294967295
921
+ :alpha: 255
1154
922
  - StoneWall:
1155
923
  :x: 424.0
1156
924
  :y: 512.0
@@ -1158,7 +926,7 @@
1158
926
  :zorder: 100
1159
927
  :factor_x: 1
1160
928
  :factor_y: 1
1161
- :color: 4294967295
929
+ :alpha: 255
1162
930
  - StoneWall:
1163
931
  :x: 424.0
1164
932
  :y: 608.0
@@ -1166,7 +934,7 @@
1166
934
  :zorder: 100
1167
935
  :factor_x: 1
1168
936
  :factor_y: 1
1169
- :color: 4294967295
937
+ :alpha: 255
1170
938
  - StoneWall:
1171
939
  :x: 424.0
1172
940
  :y: 640.0
@@ -1174,7 +942,7 @@
1174
942
  :zorder: 100
1175
943
  :factor_x: 1
1176
944
  :factor_y: 1
1177
- :color: 4294967295
945
+ :alpha: 255
1178
946
  - StoneWall:
1179
947
  :x: 392.0
1180
948
  :y: 640.0
@@ -1182,7 +950,7 @@
1182
950
  :zorder: 100
1183
951
  :factor_x: 1
1184
952
  :factor_y: 1
1185
- :color: 4294967295
953
+ :alpha: 255
1186
954
  - StoneWall:
1187
955
  :x: 360.0
1188
956
  :y: 640.0
@@ -1190,7 +958,7 @@
1190
958
  :zorder: 100
1191
959
  :factor_x: 1
1192
960
  :factor_y: 1
1193
- :color: 4294967295
961
+ :alpha: 255
1194
962
  - StoneWall:
1195
963
  :x: 328.0
1196
964
  :y: 640.0
@@ -1198,7 +966,7 @@
1198
966
  :zorder: 100
1199
967
  :factor_x: 1
1200
968
  :factor_y: 1
1201
- :color: 4294967295
969
+ :alpha: 255
1202
970
  - StoneWall:
1203
971
  :x: 296.0
1204
972
  :y: 640.0
@@ -1206,7 +974,7 @@
1206
974
  :zorder: 100
1207
975
  :factor_x: 1
1208
976
  :factor_y: 1
1209
- :color: 4294967295
977
+ :alpha: 255
1210
978
  - StoneWall:
1211
979
  :x: 232.0
1212
980
  :y: 480.0
@@ -1214,7 +982,7 @@
1214
982
  :zorder: 100
1215
983
  :factor_x: 1
1216
984
  :factor_y: 1
1217
- :color: 4294967295
985
+ :alpha: 255
1218
986
  - StoneWall:
1219
987
  :x: 200.0
1220
988
  :y: 488.0
@@ -1222,7 +990,7 @@
1222
990
  :zorder: 100
1223
991
  :factor_x: 1
1224
992
  :factor_y: 1
1225
- :color: 4294967295
993
+ :alpha: 255
1226
994
  - StoneWall:
1227
995
  :x: 232.0
1228
996
  :y: 544.0
@@ -1230,7 +998,7 @@
1230
998
  :zorder: 100
1231
999
  :factor_x: 1
1232
1000
  :factor_y: 1
1233
- :color: 4294967295
1001
+ :alpha: 255
1234
1002
  - StoneWall:
1235
1003
  :x: 232.0
1236
1004
  :y: 576.0
@@ -1238,7 +1006,7 @@
1238
1006
  :zorder: 100
1239
1007
  :factor_x: 1
1240
1008
  :factor_y: 1
1241
- :color: 4294967295
1009
+ :alpha: 255
1242
1010
  - StoneWall:
1243
1011
  :x: 208.0
1244
1012
  :y: 608.0
@@ -1246,7 +1014,7 @@
1246
1014
  :zorder: 100
1247
1015
  :factor_x: 1
1248
1016
  :factor_y: 1
1249
- :color: 4294967295
1017
+ :alpha: 255
1250
1018
  - StoneWall:
1251
1019
  :x: 248.0
1252
1020
  :y: 704.0
@@ -1254,7 +1022,7 @@
1254
1022
  :zorder: 100
1255
1023
  :factor_x: 1
1256
1024
  :factor_y: 1
1257
- :color: 4294967295
1025
+ :alpha: 255
1258
1026
  - StoneWall:
1259
1027
  :x: 264.0
1260
1028
  :y: 680.0
@@ -1262,7 +1030,7 @@
1262
1030
  :zorder: 100
1263
1031
  :factor_x: 1
1264
1032
  :factor_y: 1
1265
- :color: 4294967295
1033
+ :alpha: 255
1266
1034
  - StoneWall:
1267
1035
  :x: 240.0
1268
1036
  :y: 512.0
@@ -1270,7 +1038,7 @@
1270
1038
  :zorder: 101
1271
1039
  :factor_x: 1
1272
1040
  :factor_y: 1
1273
- :color: 4294967295
1041
+ :alpha: 255
1274
1042
  - StoneWall:
1275
1043
  :x: 80.0
1276
1044
  :y: 216.0
@@ -1278,7 +1046,7 @@
1278
1046
  :zorder: 100
1279
1047
  :factor_x: 1
1280
1048
  :factor_y: 1
1281
- :color: 4294967295
1049
+ :alpha: 255
1282
1050
  - StoneWall:
1283
1051
  :x: 232.0
1284
1052
  :y: 208.0
@@ -1286,7 +1054,7 @@
1286
1054
  :zorder: 100
1287
1055
  :factor_x: 1
1288
1056
  :factor_y: 1
1289
- :color: 4294967295
1057
+ :alpha: 255
1290
1058
  - StoneWall:
1291
1059
  :x: 248.0
1292
1060
  :y: 208.0
@@ -1294,7 +1062,7 @@
1294
1062
  :zorder: 97
1295
1063
  :factor_x: 1
1296
1064
  :factor_y: 1
1297
- :color: 4294967295
1065
+ :alpha: 255
1298
1066
  - StoneWall:
1299
1067
  :x: 16.0
1300
1068
  :y: 216.0
@@ -1302,7 +1070,7 @@
1302
1070
  :zorder: 100
1303
1071
  :factor_x: 1
1304
1072
  :factor_y: 1
1305
- :color: 4294967295
1073
+ :alpha: 255
1306
1074
  - StoneWall:
1307
1075
  :x: 240.0
1308
1076
  :y: 232.0
@@ -1310,7 +1078,7 @@
1310
1078
  :zorder: 100
1311
1079
  :factor_x: 1
1312
1080
  :factor_y: 1
1313
- :color: 4294967295
1081
+ :alpha: 255
1314
1082
  - StoneWall:
1315
1083
  :x: 144.0
1316
1084
  :y: 352.0
@@ -1318,7 +1086,7 @@
1318
1086
  :zorder: 100
1319
1087
  :factor_x: 1
1320
1088
  :factor_y: 1
1321
- :color: 4294967295
1089
+ :alpha: 255
1322
1090
  - StoneWall:
1323
1091
  :x: 296.0
1324
1092
  :y: 112.0
@@ -1326,7 +1094,7 @@
1326
1094
  :zorder: 100
1327
1095
  :factor_x: 1
1328
1096
  :factor_y: 1
1329
- :color: 4294967295
1097
+ :alpha: 255
1330
1098
  - StoneWall:
1331
1099
  :x: 296.0
1332
1100
  :y: 48.0
@@ -1334,7 +1102,7 @@
1334
1102
  :zorder: 100
1335
1103
  :factor_x: 1
1336
1104
  :factor_y: 1
1337
- :color: 4294967295
1105
+ :alpha: 255
1338
1106
  - StoneWall:
1339
1107
  :x: 296.0
1340
1108
  :y: 80.0
@@ -1342,7 +1110,7 @@
1342
1110
  :zorder: 100
1343
1111
  :factor_x: 1
1344
1112
  :factor_y: 1
1345
- :color: 4294967295
1113
+ :alpha: 255
1346
1114
  - StoneWall:
1347
1115
  :x: 296.0
1348
1116
  :y: 16.0
@@ -1350,7 +1118,7 @@
1350
1118
  :zorder: 100
1351
1119
  :factor_x: 1
1352
1120
  :factor_y: 1
1353
- :color: 4294967295
1121
+ :alpha: 255
1354
1122
  - StoneWall:
1355
1123
  :x: 328.0
1356
1124
  :y: 112.0
@@ -1358,7 +1126,7 @@
1358
1126
  :zorder: 100
1359
1127
  :factor_x: 1
1360
1128
  :factor_y: 1
1361
- :color: 4294967295
1129
+ :alpha: 255
1362
1130
  - StoneWall:
1363
1131
  :x: 360.0
1364
1132
  :y: 112.0
@@ -1366,7 +1134,7 @@
1366
1134
  :zorder: 100
1367
1135
  :factor_x: 1
1368
1136
  :factor_y: 1
1369
- :color: 4294967295
1137
+ :alpha: 255
1370
1138
  - StoneWall:
1371
1139
  :x: 392.0
1372
1140
  :y: 112.0
@@ -1374,7 +1142,7 @@
1374
1142
  :zorder: 100
1375
1143
  :factor_x: 1
1376
1144
  :factor_y: 1
1377
- :color: 4294967295
1145
+ :alpha: 255
1378
1146
  - StoneWall:
1379
1147
  :x: 424.0
1380
1148
  :y: 112.0
@@ -1382,7 +1150,7 @@
1382
1150
  :zorder: 100
1383
1151
  :factor_x: 1
1384
1152
  :factor_y: 1
1385
- :color: 4294967295
1153
+ :alpha: 255
1386
1154
  - StoneWall:
1387
1155
  :x: 456.0
1388
1156
  :y: 112.0
@@ -1390,7 +1158,7 @@
1390
1158
  :zorder: 100
1391
1159
  :factor_x: 1
1392
1160
  :factor_y: 1
1393
- :color: 4294967295
1161
+ :alpha: 255
1394
1162
  - StoneWall:
1395
1163
  :x: 344.0
1396
1164
  :y: 208.0
@@ -1398,7 +1166,7 @@
1398
1166
  :zorder: 100
1399
1167
  :factor_x: 1
1400
1168
  :factor_y: 1
1401
- :color: 4294967295
1169
+ :alpha: 255
1402
1170
  - StoneWall:
1403
1171
  :x: 384.0
1404
1172
  :y: 216.0
@@ -1406,7 +1174,7 @@
1406
1174
  :zorder: 100
1407
1175
  :factor_x: 1
1408
1176
  :factor_y: 1
1409
- :color: 4294967295
1177
+ :alpha: 255
1410
1178
  - StoneWall:
1411
1179
  :x: 336.0
1412
1180
  :y: 288.0
@@ -1414,7 +1182,7 @@
1414
1182
  :zorder: 100
1415
1183
  :factor_x: 1
1416
1184
  :factor_y: 1
1417
- :color: 4294967295
1185
+ :alpha: 255
1418
1186
  - StoneWall:
1419
1187
  :x: 424.0
1420
1188
  :y: 248.0
@@ -1422,7 +1190,7 @@
1422
1190
  :zorder: 100
1423
1191
  :factor_x: 1
1424
1192
  :factor_y: 1
1425
- :color: 4294967295
1193
+ :alpha: 255
1426
1194
  - StoneWall:
1427
1195
  :x: 488.0
1428
1196
  :y: 256.0
@@ -1430,7 +1198,7 @@
1430
1198
  :zorder: 100
1431
1199
  :factor_x: 1
1432
1200
  :factor_y: 1
1433
- :color: 4294967295
1201
+ :alpha: 255
1434
1202
  - StoneWall:
1435
1203
  :x: 488.0
1436
1204
  :y: 112.0
@@ -1438,7 +1206,7 @@
1438
1206
  :zorder: 100
1439
1207
  :factor_x: 1
1440
1208
  :factor_y: 1
1441
- :color: 4294967295
1209
+ :alpha: 255
1442
1210
  - StoneWall:
1443
1211
  :x: 520.0
1444
1212
  :y: 112.0
@@ -1446,7 +1214,7 @@
1446
1214
  :zorder: 100
1447
1215
  :factor_x: 1
1448
1216
  :factor_y: 1
1449
- :color: 4294967295
1217
+ :alpha: 255
1450
1218
  - StoneWall:
1451
1219
  :x: 552.0
1452
1220
  :y: 112.0
@@ -1454,7 +1222,7 @@
1454
1222
  :zorder: 100
1455
1223
  :factor_x: 1
1456
1224
  :factor_y: 1
1457
- :color: 4294967295
1225
+ :alpha: 255
1458
1226
  - StoneWall:
1459
1227
  :x: 496.0
1460
1228
  :y: 208.0
@@ -1462,7 +1230,7 @@
1462
1230
  :zorder: 100
1463
1231
  :factor_x: 1
1464
1232
  :factor_y: 1
1465
- :color: 4294967295
1233
+ :alpha: 255
1466
1234
  - StoneWall:
1467
1235
  :x: 552.0
1468
1236
  :y: 232.0
@@ -1470,7 +1238,7 @@
1470
1238
  :zorder: 100
1471
1239
  :factor_x: 1
1472
1240
  :factor_y: 1
1473
- :color: 4294967295
1241
+ :alpha: 255
1474
1242
  - StoneWall:
1475
1243
  :x: 584.0
1476
1244
  :y: 112.0
@@ -1478,7 +1246,7 @@
1478
1246
  :zorder: 100
1479
1247
  :factor_x: 1
1480
1248
  :factor_y: 1
1481
- :color: 4294967295
1249
+ :alpha: 255
1482
1250
  - StoneWall:
1483
1251
  :x: 616.0
1484
1252
  :y: 112.0
@@ -1486,7 +1254,7 @@
1486
1254
  :zorder: 100
1487
1255
  :factor_x: 1
1488
1256
  :factor_y: 1
1489
- :color: 4294967295
1257
+ :alpha: 255
1490
1258
  - StoneWall:
1491
1259
  :x: 648.0
1492
1260
  :y: 112.0
@@ -1494,7 +1262,7 @@
1494
1262
  :zorder: 100
1495
1263
  :factor_x: 1
1496
1264
  :factor_y: 1
1497
- :color: 4294967295
1265
+ :alpha: 255
1498
1266
  - StoneWall:
1499
1267
  :x: 648.0
1500
1268
  :y: 144.0
@@ -1502,7 +1270,7 @@
1502
1270
  :zorder: 100
1503
1271
  :factor_x: 1
1504
1272
  :factor_y: 1
1505
- :color: 4294967295
1273
+ :alpha: 255
1506
1274
  - StoneWall:
1507
1275
  :x: 648.0
1508
1276
  :y: 208.0
@@ -1510,7 +1278,7 @@
1510
1278
  :zorder: 100
1511
1279
  :factor_x: 1
1512
1280
  :factor_y: 1
1513
- :color: 4294967295
1281
+ :alpha: 255
1514
1282
  - StoneWall:
1515
1283
  :x: 648.0
1516
1284
  :y: 240.0
@@ -1518,7 +1286,7 @@
1518
1286
  :zorder: 100
1519
1287
  :factor_x: 1
1520
1288
  :factor_y: 1
1521
- :color: 4294967295
1289
+ :alpha: 255
1522
1290
  - StoneWall:
1523
1291
  :x: 552.0
1524
1292
  :y: 264.0
@@ -1526,7 +1294,7 @@
1526
1294
  :zorder: 100
1527
1295
  :factor_x: 1
1528
1296
  :factor_y: 1
1529
- :color: 4294967295
1297
+ :alpha: 255
1530
1298
  - StoneWall:
1531
1299
  :x: 648.0
1532
1300
  :y: 272.0
@@ -1534,7 +1302,7 @@
1534
1302
  :zorder: 100
1535
1303
  :factor_x: 1
1536
1304
  :factor_y: 1
1537
- :color: 4294967295
1305
+ :alpha: 255
1538
1306
  - StoneWall:
1539
1307
  :x: 552.0
1540
1308
  :y: 296.0
@@ -1542,7 +1310,7 @@
1542
1310
  :zorder: 100
1543
1311
  :factor_x: 1
1544
1312
  :factor_y: 1
1545
- :color: 4294967295
1313
+ :alpha: 255
1546
1314
  - StoneWall:
1547
1315
  :x: 648.0
1548
1316
  :y: 304.0
@@ -1550,7 +1318,7 @@
1550
1318
  :zorder: 100
1551
1319
  :factor_x: 1
1552
1320
  :factor_y: 1
1553
- :color: 4294967295
1321
+ :alpha: 255
1554
1322
  - StoneWall:
1555
1323
  :x: 648.0
1556
1324
  :y: 336.0
@@ -1558,7 +1326,7 @@
1558
1326
  :zorder: 100
1559
1327
  :factor_x: 1
1560
1328
  :factor_y: 1
1561
- :color: 4294967295
1329
+ :alpha: 255
1562
1330
  - StoneWall:
1563
1331
  :x: 552.0
1564
1332
  :y: 328.0
@@ -1566,7 +1334,7 @@
1566
1334
  :zorder: 100
1567
1335
  :factor_x: 1
1568
1336
  :factor_y: 1
1569
- :color: 4294967295
1337
+ :alpha: 255
1570
1338
  - StoneWall:
1571
1339
  :x: 552.0
1572
1340
  :y: 360.0
@@ -1574,7 +1342,7 @@
1574
1342
  :zorder: 100
1575
1343
  :factor_x: 1
1576
1344
  :factor_y: 1
1577
- :color: 4294967295
1345
+ :alpha: 255
1578
1346
  - StoneWall:
1579
1347
  :x: 552.0
1580
1348
  :y: 392.0
@@ -1582,7 +1350,7 @@
1582
1350
  :zorder: 100
1583
1351
  :factor_x: 1
1584
1352
  :factor_y: 1
1585
- :color: 4294967295
1353
+ :alpha: 255
1586
1354
  - StoneWall:
1587
1355
  :x: 552.0
1588
1356
  :y: 424.0
@@ -1590,7 +1358,7 @@
1590
1358
  :zorder: 100
1591
1359
  :factor_x: 1
1592
1360
  :factor_y: 1
1593
- :color: 4294967295
1361
+ :alpha: 255
1594
1362
  - StoneWall:
1595
1363
  :x: 552.0
1596
1364
  :y: 456.0
@@ -1598,7 +1366,7 @@
1598
1366
  :zorder: 100
1599
1367
  :factor_x: 1
1600
1368
  :factor_y: 1
1601
- :color: 4294967295
1369
+ :alpha: 255
1602
1370
  - StoneWall:
1603
1371
  :x: 552.0
1604
1372
  :y: 488.0
@@ -1606,7 +1374,7 @@
1606
1374
  :zorder: 100
1607
1375
  :factor_x: 1
1608
1376
  :factor_y: 1
1609
- :color: 4294967295
1377
+ :alpha: 255
1610
1378
  - StoneWall:
1611
1379
  :x: 552.0
1612
1380
  :y: 520.0
@@ -1614,7 +1382,7 @@
1614
1382
  :zorder: 100
1615
1383
  :factor_x: 1
1616
1384
  :factor_y: 1
1617
- :color: 4294967295
1385
+ :alpha: 255
1618
1386
  - StoneWall:
1619
1387
  :x: 544.0
1620
1388
  :y: 576.0
@@ -1622,7 +1390,7 @@
1622
1390
  :zorder: 100
1623
1391
  :factor_x: 1
1624
1392
  :factor_y: 1
1625
- :color: 4294967295
1393
+ :alpha: 255
1626
1394
  - StoneWall:
1627
1395
  :x: 648.0
1628
1396
  :y: 368.0
@@ -1630,7 +1398,7 @@
1630
1398
  :zorder: 100
1631
1399
  :factor_x: 1
1632
1400
  :factor_y: 1
1633
- :color: 4294967295
1401
+ :alpha: 255
1634
1402
  - StoneWall:
1635
1403
  :x: 648.0
1636
1404
  :y: 400.0
@@ -1638,7 +1406,7 @@
1638
1406
  :zorder: 100
1639
1407
  :factor_x: 1
1640
1408
  :factor_y: 1
1641
- :color: 4294967295
1409
+ :alpha: 255
1642
1410
  - StoneWall:
1643
1411
  :x: 584.0
1644
1412
  :y: 552.0
@@ -1646,7 +1414,7 @@
1646
1414
  :zorder: 100
1647
1415
  :factor_x: 1
1648
1416
  :factor_y: 1
1649
- :color: 4294967295
1417
+ :alpha: 255
1650
1418
  - StoneWall:
1651
1419
  :x: 616.0
1652
1420
  :y: 552.0
@@ -1654,7 +1422,7 @@
1654
1422
  :zorder: 100
1655
1423
  :factor_x: 1
1656
1424
  :factor_y: 1
1657
- :color: 4294967295
1425
+ :alpha: 255
1658
1426
  - StoneWall:
1659
1427
  :x: 648.0
1660
1428
  :y: 552.0
@@ -1662,7 +1430,7 @@
1662
1430
  :zorder: 100
1663
1431
  :factor_x: 1
1664
1432
  :factor_y: 1
1665
- :color: 4294967295
1433
+ :alpha: 255
1666
1434
  - StoneWall:
1667
1435
  :x: 680.0
1668
1436
  :y: 552.0
@@ -1670,7 +1438,7 @@
1670
1438
  :zorder: 100
1671
1439
  :factor_x: 1
1672
1440
  :factor_y: 1
1673
- :color: 4294967295
1441
+ :alpha: 255
1674
1442
  - StoneWall:
1675
1443
  :x: 712.0
1676
1444
  :y: 552.0
@@ -1678,7 +1446,7 @@
1678
1446
  :zorder: 100
1679
1447
  :factor_x: 1
1680
1448
  :factor_y: 1
1681
- :color: 4294967295
1449
+ :alpha: 255
1682
1450
  - StoneWall:
1683
1451
  :x: 744.0
1684
1452
  :y: 552.0
@@ -1686,7 +1454,7 @@
1686
1454
  :zorder: 100
1687
1455
  :factor_x: 1
1688
1456
  :factor_y: 1
1689
- :color: 4294967295
1457
+ :alpha: 255
1690
1458
  - StoneWall:
1691
1459
  :x: 776.0
1692
1460
  :y: 552.0
@@ -1694,7 +1462,7 @@
1694
1462
  :zorder: 100
1695
1463
  :factor_x: 1
1696
1464
  :factor_y: 1
1697
- :color: 4294967295
1465
+ :alpha: 255
1698
1466
  - StoneWall:
1699
1467
  :x: 808.0
1700
1468
  :y: 552.0
@@ -1702,7 +1470,7 @@
1702
1470
  :zorder: 100
1703
1471
  :factor_x: 1
1704
1472
  :factor_y: 1
1705
- :color: 4294967295
1473
+ :alpha: 255
1706
1474
  - StoneWall:
1707
1475
  :x: 840.0
1708
1476
  :y: 552.0
@@ -1710,7 +1478,7 @@
1710
1478
  :zorder: 100
1711
1479
  :factor_x: 1
1712
1480
  :factor_y: 1
1713
- :color: 4294967295
1481
+ :alpha: 255
1714
1482
  - StoneWall:
1715
1483
  :x: 872.0
1716
1484
  :y: 552.0
@@ -1718,7 +1486,7 @@
1718
1486
  :zorder: 100
1719
1487
  :factor_x: 1
1720
1488
  :factor_y: 1
1721
- :color: 4294967295
1489
+ :alpha: 255
1722
1490
  - StoneWall:
1723
1491
  :x: 904.0
1724
1492
  :y: 552.0
@@ -1726,7 +1494,7 @@
1726
1494
  :zorder: 100
1727
1495
  :factor_x: 1
1728
1496
  :factor_y: 1
1729
- :color: 4294967295
1497
+ :alpha: 255
1730
1498
  - StoneWall:
1731
1499
  :x: 936.0
1732
1500
  :y: 552.0
@@ -1734,7 +1502,7 @@
1734
1502
  :zorder: 100
1735
1503
  :factor_x: 1
1736
1504
  :factor_y: 1
1737
- :color: 4294967295
1505
+ :alpha: 255
1738
1506
  - StoneWall:
1739
1507
  :x: 968.0
1740
1508
  :y: 552.0
@@ -1742,23 +1510,7 @@
1742
1510
  :zorder: 100
1743
1511
  :factor_x: 1
1744
1512
  :factor_y: 1
1745
- :color: 4294967295
1746
- - StoneWall:
1747
- :x: 1008.0
1748
- :y: 544.0
1749
- :angle: 0
1750
- :zorder: 100
1751
- :factor_x: 1
1752
- :factor_y: 1
1753
- :color: 4294967295
1754
- - StoneWall:
1755
- :x: 1040.0
1756
- :y: 576.0
1757
- :angle: 0
1758
- :zorder: 100
1759
- :factor_x: 1
1760
- :factor_y: 1
1761
- :color: 4294967295
1513
+ :alpha: 255
1762
1514
  - StoneWall:
1763
1515
  :x: 680.0
1764
1516
  :y: 400.0
@@ -1766,7 +1518,7 @@
1766
1518
  :zorder: 100
1767
1519
  :factor_x: 1
1768
1520
  :factor_y: 1
1769
- :color: 4294967295
1521
+ :alpha: 255
1770
1522
  - StoneWall:
1771
1523
  :x: 712.0
1772
1524
  :y: 432.0
@@ -1774,7 +1526,7 @@
1774
1526
  :zorder: 100
1775
1527
  :factor_x: 1
1776
1528
  :factor_y: 1
1777
- :color: 4294967295
1529
+ :alpha: 255
1778
1530
  - StoneWall:
1779
1531
  :x: 744.0
1780
1532
  :y: 432.0
@@ -1782,7 +1534,7 @@
1782
1534
  :zorder: 100
1783
1535
  :factor_x: 1
1784
1536
  :factor_y: 1
1785
- :color: 4294967295
1537
+ :alpha: 255
1786
1538
  - StoneWall:
1787
1539
  :x: 776.0
1788
1540
  :y: 432.0
@@ -1790,7 +1542,7 @@
1790
1542
  :zorder: 100
1791
1543
  :factor_x: 1
1792
1544
  :factor_y: 1
1793
- :color: 4294967295
1545
+ :alpha: 255
1794
1546
  - StoneWall:
1795
1547
  :x: 808.0
1796
1548
  :y: 432.0
@@ -1798,15 +1550,7 @@
1798
1550
  :zorder: 100
1799
1551
  :factor_x: 1
1800
1552
  :factor_y: 1
1801
- :color: 4294967295
1802
- - StoneWall:
1803
- :x: 1072.0
1804
- :y: 560.0
1805
- :angle: 0
1806
- :zorder: 100
1807
- :factor_x: 1
1808
- :factor_y: 1
1809
- :color: 4294967295
1553
+ :alpha: 255
1810
1554
  - StoneWall:
1811
1555
  :x: 400.0
1812
1556
  :y: 248.0
@@ -1814,7 +1558,7 @@
1814
1558
  :zorder: 100
1815
1559
  :factor_x: 1
1816
1560
  :factor_y: 1
1817
- :color: 4294967295
1561
+ :alpha: 255
1818
1562
  - StoneWall:
1819
1563
  :x: 840.0
1820
1564
  :y: 432.0
@@ -1822,7 +1566,7 @@
1822
1566
  :zorder: 100
1823
1567
  :factor_x: 1
1824
1568
  :factor_y: 1
1825
- :color: 4294967295
1569
+ :alpha: 255
1826
1570
  - StoneWall:
1827
1571
  :x: 872.0
1828
1572
  :y: 432.0
@@ -1830,7 +1574,7 @@
1830
1574
  :zorder: 100
1831
1575
  :factor_x: 1
1832
1576
  :factor_y: 1
1833
- :color: 4294967295
1577
+ :alpha: 255
1834
1578
  - StoneWall:
1835
1579
  :x: 904.0
1836
1580
  :y: 432.0
@@ -1838,7 +1582,7 @@
1838
1582
  :zorder: 100
1839
1583
  :factor_x: 1
1840
1584
  :factor_y: 1
1841
- :color: 4294967295
1585
+ :alpha: 255
1842
1586
  - StoneWall:
1843
1587
  :x: 936.0
1844
1588
  :y: 432.0
@@ -1846,7 +1590,7 @@
1846
1590
  :zorder: 100
1847
1591
  :factor_x: 1
1848
1592
  :factor_y: 1
1849
- :color: 4294967295
1593
+ :alpha: 255
1850
1594
  - StoneWall:
1851
1595
  :x: 936.0
1852
1596
  :y: 400.0
@@ -1854,7 +1598,7 @@
1854
1598
  :zorder: 100
1855
1599
  :factor_x: 1
1856
1600
  :factor_y: 1
1857
- :color: 4294967295
1601
+ :alpha: 255
1858
1602
  - StoneWall:
1859
1603
  :x: 936.0
1860
1604
  :y: 368.0
@@ -1862,7 +1606,7 @@
1862
1606
  :zorder: 100
1863
1607
  :factor_x: 1
1864
1608
  :factor_y: 1
1865
- :color: 4294967295
1609
+ :alpha: 255
1866
1610
  - StoneWall:
1867
1611
  :x: 744.0
1868
1612
  :y: 584.0
@@ -1870,7 +1614,7 @@
1870
1614
  :zorder: 100
1871
1615
  :factor_x: 1
1872
1616
  :factor_y: 1
1873
- :color: 4294967295
1617
+ :alpha: 255
1874
1618
  - StoneWall:
1875
1619
  :x: 744.0
1876
1620
  :y: 616.0
@@ -1878,7 +1622,7 @@
1878
1622
  :zorder: 100
1879
1623
  :factor_x: 1
1880
1624
  :factor_y: 1
1881
- :color: 4294967295
1625
+ :alpha: 255
1882
1626
  - StoneWall:
1883
1627
  :x: 744.0
1884
1628
  :y: 648.0
@@ -1886,7 +1630,7 @@
1886
1630
  :zorder: 100
1887
1631
  :factor_x: 1
1888
1632
  :factor_y: 1
1889
- :color: 4294967295
1633
+ :alpha: 255
1890
1634
  - StoneWall:
1891
1635
  :x: 744.0
1892
1636
  :y: 680.0
@@ -1894,7 +1638,7 @@
1894
1638
  :zorder: 100
1895
1639
  :factor_x: 1
1896
1640
  :factor_y: 1
1897
- :color: 4294967295
1641
+ :alpha: 255
1898
1642
  - StoneWall:
1899
1643
  :x: 744.0
1900
1644
  :y: 712.0
@@ -1902,7 +1646,7 @@
1902
1646
  :zorder: 100
1903
1647
  :factor_x: 1
1904
1648
  :factor_y: 1
1905
- :color: 4294967295
1649
+ :alpha: 255
1906
1650
  - StoneWall:
1907
1651
  :x: 744.0
1908
1652
  :y: 744.0
@@ -1910,7 +1654,7 @@
1910
1654
  :zorder: 100
1911
1655
  :factor_x: 1
1912
1656
  :factor_y: 1
1913
- :color: 4294967295
1657
+ :alpha: 255
1914
1658
  - StoneWall:
1915
1659
  :x: 776.0
1916
1660
  :y: 744.0
@@ -1918,7 +1662,7 @@
1918
1662
  :zorder: 100
1919
1663
  :factor_x: 1
1920
1664
  :factor_y: 1
1921
- :color: 4294967295
1665
+ :alpha: 255
1922
1666
  - StoneWall:
1923
1667
  :x: 808.0
1924
1668
  :y: 744.0
@@ -1926,7 +1670,7 @@
1926
1670
  :zorder: 100
1927
1671
  :factor_x: 1
1928
1672
  :factor_y: 1
1929
- :color: 4294967295
1673
+ :alpha: 255
1930
1674
  - StoneWall:
1931
1675
  :x: 104.0
1932
1676
  :y: 384.0
@@ -1934,7 +1678,7 @@
1934
1678
  :zorder: 100
1935
1679
  :factor_x: 1
1936
1680
  :factor_y: 1
1937
- :color: 4294967295
1681
+ :alpha: 255
1938
1682
  - StoneWall:
1939
1683
  :x: 64.0
1940
1684
  :y: 368.0
@@ -1942,7 +1686,7 @@
1942
1686
  :zorder: 100
1943
1687
  :factor_x: 1
1944
1688
  :factor_y: 1
1945
- :color: 4294967295
1689
+ :alpha: 255
1946
1690
  - StoneWall:
1947
1691
  :x: 272.0
1948
1692
  :y: 264.0
@@ -1950,7 +1694,7 @@
1950
1694
  :zorder: 100
1951
1695
  :factor_x: 1
1952
1696
  :factor_y: 1
1953
- :color: 4294967295
1697
+ :alpha: 255
1954
1698
  - StoneWall:
1955
1699
  :x: 280.0
1956
1700
  :y: 344.0
@@ -1958,7 +1702,7 @@
1958
1702
  :zorder: 100
1959
1703
  :factor_x: 1
1960
1704
  :factor_y: 1
1961
- :color: 4294967295
1705
+ :alpha: 255
1962
1706
  - StoneWall:
1963
1707
  :x: 88.0
1964
1708
  :y: 264.0
@@ -1966,7 +1710,7 @@
1966
1710
  :zorder: 100
1967
1711
  :factor_x: 1
1968
1712
  :factor_y: 1
1969
- :color: 4294967295
1713
+ :alpha: 255
1970
1714
  - StoneWall:
1971
1715
  :x: 128.0
1972
1716
  :y: 352.0
@@ -1974,7 +1718,7 @@
1974
1718
  :zorder: 100
1975
1719
  :factor_x: 1
1976
1720
  :factor_y: 1
1977
- :color: 4294967295
1721
+ :alpha: 255
1978
1722
  - StoneWall:
1979
1723
  :x: 48.0
1980
1724
  :y: 216.0
@@ -1982,7 +1726,7 @@
1982
1726
  :zorder: 100
1983
1727
  :factor_x: 1
1984
1728
  :factor_y: 1
1985
- :color: 4294967295
1729
+ :alpha: 255
1986
1730
  - StoneWall:
1987
1731
  :x: 200.0
1988
1732
  :y: 216.0
@@ -1990,7 +1734,7 @@
1990
1734
  :zorder: 100
1991
1735
  :factor_x: 1
1992
1736
  :factor_y: 1
1993
- :color: 4294967295
1737
+ :alpha: 255
1994
1738
  - StoneWall:
1995
1739
  :x: 48.0
1996
1740
  :y: 280.0
@@ -1998,7 +1742,7 @@
1998
1742
  :zorder: 100
1999
1743
  :factor_x: 1
2000
1744
  :factor_y: 1
2001
- :color: 4294967295
1745
+ :alpha: 255
2002
1746
  - StoneWall:
2003
1747
  :x: 72.0
2004
1748
  :y: 400.0
@@ -2006,7 +1750,7 @@
2006
1750
  :zorder: 100
2007
1751
  :factor_x: 1
2008
1752
  :factor_y: 1
2009
- :color: 4294967295
1753
+ :alpha: 255
2010
1754
  - StoneWall:
2011
1755
  :x: 192.0
2012
1756
  :y: 360.0
@@ -2014,7 +1758,7 @@
2014
1758
  :zorder: 100
2015
1759
  :factor_x: 1
2016
1760
  :factor_y: 1
2017
- :color: 4294967295
1761
+ :alpha: 255
2018
1762
  - StoneWall:
2019
1763
  :x: 32.0
2020
1764
  :y: 544.0
@@ -2022,7 +1766,7 @@
2022
1766
  :zorder: 100
2023
1767
  :factor_x: 1
2024
1768
  :factor_y: 1
2025
- :color: 4294967295
1769
+ :alpha: 255
2026
1770
  - StoneWall:
2027
1771
  :x: 72.0
2028
1772
  :y: 448.0
@@ -2030,7 +1774,7 @@
2030
1774
  :zorder: 100
2031
1775
  :factor_x: 1
2032
1776
  :factor_y: 1
2033
- :color: 4294967295
1777
+ :alpha: 255
2034
1778
  - StoneWall:
2035
1779
  :x: 80.0
2036
1780
  :y: 584.0
@@ -2038,7 +1782,7 @@
2038
1782
  :zorder: 100
2039
1783
  :factor_x: 1
2040
1784
  :factor_y: 1
2041
- :color: 4294967295
1785
+ :alpha: 255
2042
1786
  - StoneWall:
2043
1787
  :x: 80.0
2044
1788
  :y: 536.0
@@ -2046,7 +1790,7 @@
2046
1790
  :zorder: 100
2047
1791
  :factor_x: 1
2048
1792
  :factor_y: 1
2049
- :color: 4294967295
1793
+ :alpha: 255
2050
1794
  - StoneWall:
2051
1795
  :x: 152.0
2052
1796
  :y: 640.0
@@ -2054,7 +1798,7 @@
2054
1798
  :zorder: 100
2055
1799
  :factor_x: 1
2056
1800
  :factor_y: 1
2057
- :color: 4294967295
1801
+ :alpha: 255
2058
1802
  - StoneWall:
2059
1803
  :x: 48.0
2060
1804
  :y: 584.0
@@ -2062,7 +1806,7 @@
2062
1806
  :zorder: 100
2063
1807
  :factor_x: 1
2064
1808
  :factor_y: 1
2065
- :color: 4294967295
1809
+ :alpha: 255
2066
1810
  - StoneWall:
2067
1811
  :x: 128.0
2068
1812
  :y: 608.0
@@ -2070,7 +1814,7 @@
2070
1814
  :zorder: 100
2071
1815
  :factor_x: 1
2072
1816
  :factor_y: 1
2073
- :color: 4294967295
1817
+ :alpha: 255
2074
1818
  - StoneWall:
2075
1819
  :x: 104.0
2076
1820
  :y: 616.0
@@ -2078,7 +1822,7 @@
2078
1822
  :zorder: 100
2079
1823
  :factor_x: 1
2080
1824
  :factor_y: 1
2081
- :color: 4294967295
1825
+ :alpha: 255
2082
1826
  - StoneWall:
2083
1827
  :x: 24.0
2084
1828
  :y: 576.0
@@ -2086,7 +1830,7 @@
2086
1830
  :zorder: 100
2087
1831
  :factor_x: 1
2088
1832
  :factor_y: 1
2089
- :color: 4294967295
1833
+ :alpha: 255
2090
1834
  - StoneWall:
2091
1835
  :x: 24.0
2092
1836
  :y: 600.0
@@ -2094,7 +1838,7 @@
2094
1838
  :zorder: 100
2095
1839
  :factor_x: 1
2096
1840
  :factor_y: 1
2097
- :color: 4294967295
1841
+ :alpha: 255
2098
1842
  - StoneWall:
2099
1843
  :x: 296.0
2100
1844
  :y: 200.0
@@ -2102,7 +1846,7 @@
2102
1846
  :zorder: 100
2103
1847
  :factor_x: 1
2104
1848
  :factor_y: 1
2105
- :color: 4294967295
1849
+ :alpha: 255
2106
1850
  - StoneWall:
2107
1851
  :x: 380.0
2108
1852
  :y: 218.0
@@ -2110,7 +1854,7 @@
2110
1854
  :zorder: 100
2111
1855
  :factor_x: 1
2112
1856
  :factor_y: 1
2113
- :color: 4294967295
1857
+ :alpha: 255
2114
1858
  - StoneWall:
2115
1859
  :x: 406.0
2116
1860
  :y: 216.0
@@ -2118,7 +1862,7 @@
2118
1862
  :zorder: 100
2119
1863
  :factor_x: 1
2120
1864
  :factor_y: 1
2121
- :color: 4294967295
1865
+ :alpha: 255
2122
1866
  - StoneWall:
2123
1867
  :x: 445.0
2124
1868
  :y: 212.0
@@ -2126,7 +1870,7 @@
2126
1870
  :zorder: 100
2127
1871
  :factor_x: 1
2128
1872
  :factor_y: 1
2129
- :color: 4294967295
1873
+ :alpha: 255
2130
1874
  - StoneWall:
2131
1875
  :x: 473.0
2132
1876
  :y: 212.0
@@ -2134,7 +1878,7 @@
2134
1878
  :zorder: 100
2135
1879
  :factor_x: 1
2136
1880
  :factor_y: 1
2137
- :color: 4294967295
1881
+ :alpha: 255
2138
1882
  - StoneWall:
2139
1883
  :x: 501.0
2140
1884
  :y: 216.0
@@ -2142,7 +1886,7 @@
2142
1886
  :zorder: 100
2143
1887
  :factor_x: 1
2144
1888
  :factor_y: 1
2145
- :color: 4294967295
1889
+ :alpha: 255
2146
1890
  - StoneWall:
2147
1891
  :x: 514.0
2148
1892
  :y: 230.0
@@ -2150,7 +1894,7 @@
2150
1894
  :zorder: 100
2151
1895
  :factor_x: 1
2152
1896
  :factor_y: 1
2153
- :color: 4294967295
1897
+ :alpha: 255
2154
1898
  - StoneWall:
2155
1899
  :x: 471.0
2156
1900
  :y: 256.0
@@ -2158,7 +1902,7 @@
2158
1902
  :zorder: 100
2159
1903
  :factor_x: 1
2160
1904
  :factor_y: 1
2161
- :color: 4294967295
1905
+ :alpha: 255
2162
1906
  - StoneWall:
2163
1907
  :x: 450.0
2164
1908
  :y: 257.0
@@ -2166,7 +1910,7 @@
2166
1910
  :zorder: 100
2167
1911
  :factor_x: 1
2168
1912
  :factor_y: 1
2169
- :color: 4294967295
1913
+ :alpha: 255
2170
1914
  - StoneWall:
2171
1915
  :x: 432.0
2172
1916
  :y: 280.0
@@ -2174,7 +1918,7 @@
2174
1918
  :zorder: 100
2175
1919
  :factor_x: 1
2176
1920
  :factor_y: 1
2177
- :color: 4294967295
1921
+ :alpha: 255
2178
1922
  - StoneWall:
2179
1923
  :x: 380.0
2180
1924
  :y: 262.0
@@ -2182,7 +1926,7 @@
2182
1926
  :zorder: 100
2183
1927
  :factor_x: 1
2184
1928
  :factor_y: 1
2185
- :color: 4294967295
1929
+ :alpha: 255
2186
1930
  - StoneWall:
2187
1931
  :x: 353.0
2188
1932
  :y: 264.0
@@ -2190,7 +1934,7 @@
2190
1934
  :zorder: 100
2191
1935
  :factor_x: 1
2192
1936
  :factor_y: 1
2193
- :color: 4294967295
1937
+ :alpha: 255
2194
1938
  - StoneWall:
2195
1939
  :x: 112.0
2196
1940
  :y: 184.0
@@ -2198,7 +1942,7 @@
2198
1942
  :zorder: 100
2199
1943
  :factor_x: 1
2200
1944
  :factor_y: 1
2201
- :color: 4294967295
1945
+ :alpha: 255
2202
1946
  - StoneWall:
2203
1947
  :x: 40.0
2204
1948
  :y: 232.0
@@ -2206,7 +1950,7 @@
2206
1950
  :zorder: 100
2207
1951
  :factor_x: 1
2208
1952
  :factor_y: 1
2209
- :color: 4294967295
1953
+ :alpha: 255
2210
1954
  - StoneWall:
2211
1955
  :x: 280.0
2212
1956
  :y: 176.0
@@ -2214,7 +1958,7 @@
2214
1958
  :zorder: 96
2215
1959
  :factor_x: 1
2216
1960
  :factor_y: 1
2217
- :color: 4294967295
1961
+ :alpha: 255
2218
1962
  - StoneWall:
2219
1963
  :x: 256.0
2220
1964
  :y: 312.0
@@ -2222,7 +1966,7 @@
2222
1966
  :zorder: 100
2223
1967
  :factor_x: 1
2224
1968
  :factor_y: 1
2225
- :color: 4294967295
1969
+ :alpha: 255
2226
1970
  - StoneWall:
2227
1971
  :x: 88.0
2228
1972
  :y: 264.0
@@ -2230,7 +1974,7 @@
2230
1974
  :zorder: 100
2231
1975
  :factor_x: 1
2232
1976
  :factor_y: 1
2233
- :color: 4294967295
1977
+ :alpha: 255
2234
1978
  - StoneWall:
2235
1979
  :x: 104.0
2236
1980
  :y: 240.0
@@ -2238,7 +1982,7 @@
2238
1982
  :zorder: 100
2239
1983
  :factor_x: 1
2240
1984
  :factor_y: 1
2241
- :color: 4294967295
1985
+ :alpha: 255
2242
1986
  - StoneWall:
2243
1987
  :x: 216.0
2244
1988
  :y: 184.0
@@ -2246,7 +1990,7 @@
2246
1990
  :zorder: 99
2247
1991
  :factor_x: 1
2248
1992
  :factor_y: 1
2249
- :color: 4294967295
1993
+ :alpha: 255
2250
1994
  - StoneWall:
2251
1995
  :x: 248.0
2252
1996
  :y: 184.0
@@ -2254,7 +1998,7 @@
2254
1998
  :zorder: 99
2255
1999
  :factor_x: 1
2256
2000
  :factor_y: 1
2257
- :color: 4294967295
2001
+ :alpha: 255
2258
2002
  - StoneWall:
2259
2003
  :x: 80.0
2260
2004
  :y: 200.0
@@ -2262,7 +2006,7 @@
2262
2006
  :zorder: 100
2263
2007
  :factor_x: 1
2264
2008
  :factor_y: 1
2265
- :color: 4294967295
2009
+ :alpha: 255
2266
2010
  - StoneWall:
2267
2011
  :x: 288.0
2268
2012
  :y: 320.0
@@ -2270,7 +2014,7 @@
2270
2014
  :zorder: 100
2271
2015
  :factor_x: 1
2272
2016
  :factor_y: 1
2273
- :color: 4294967295
2017
+ :alpha: 255
2274
2018
  - StoneWall:
2275
2019
  :x: 360.0
2276
2020
  :y: 312.0
@@ -2278,7 +2022,7 @@
2278
2022
  :zorder: 100
2279
2023
  :factor_x: 1
2280
2024
  :factor_y: 1
2281
- :color: 4294967295
2025
+ :alpha: 255
2282
2026
  - StoneWall:
2283
2027
  :x: 392.0
2284
2028
  :y: 312.0
@@ -2286,7 +2030,7 @@
2286
2030
  :zorder: 100
2287
2031
  :factor_x: 1
2288
2032
  :factor_y: 1
2289
- :color: 4294967295
2033
+ :alpha: 255
2290
2034
  - StoneWall:
2291
2035
  :x: 192.0
2292
2036
  :y: 240.0
@@ -2294,7 +2038,7 @@
2294
2038
  :zorder: 100
2295
2039
  :factor_x: 1
2296
2040
  :factor_y: 1
2297
- :color: 4294967295
2041
+ :alpha: 255
2298
2042
  - StoneWall:
2299
2043
  :x: 272.0
2300
2044
  :y: 264.0
@@ -2302,7 +2046,7 @@
2302
2046
  :zorder: 100
2303
2047
  :factor_x: 1
2304
2048
  :factor_y: 1
2305
- :color: 4294967295
2049
+ :alpha: 255
2306
2050
  - StoneWall:
2307
2051
  :x: 224.0
2308
2052
  :y: 248.0
@@ -2310,7 +2054,7 @@
2310
2054
  :zorder: 100
2311
2055
  :factor_x: 1
2312
2056
  :factor_y: 1
2313
- :color: 4294967295
2057
+ :alpha: 255
2314
2058
  - StoneWall:
2315
2059
  :x: 24.0
2316
2060
  :y: 280.0
@@ -2318,7 +2062,7 @@
2318
2062
  :zorder: 100
2319
2063
  :factor_x: 1
2320
2064
  :factor_y: 1
2321
- :color: 4294967295
2065
+ :alpha: 255
2322
2066
  - StoneWall:
2323
2067
  :x: 112.0
2324
2068
  :y: 248.0
@@ -2326,7 +2070,7 @@
2326
2070
  :zorder: 100
2327
2071
  :factor_x: 1
2328
2072
  :factor_y: 1
2329
- :color: 4294967295
2073
+ :alpha: 255
2330
2074
  - StoneWall:
2331
2075
  :x: 240.0
2332
2076
  :y: 272.0
@@ -2334,7 +2078,7 @@
2334
2078
  :zorder: 100
2335
2079
  :factor_x: 1
2336
2080
  :factor_y: 1
2337
- :color: 4294967295
2081
+ :alpha: 255
2338
2082
  - StoneWall:
2339
2083
  :x: 256.0
2340
2084
  :y: 280.0
@@ -2342,7 +2086,7 @@
2342
2086
  :zorder: 100
2343
2087
  :factor_x: 1
2344
2088
  :factor_y: 1
2345
- :color: 4294967295
2089
+ :alpha: 255
2346
2090
  - StoneWall:
2347
2091
  :x: 288.0
2348
2092
  :y: 264.0
@@ -2350,7 +2094,7 @@
2350
2094
  :zorder: 100
2351
2095
  :factor_x: 1
2352
2096
  :factor_y: 1
2353
- :color: 4294967295
2097
+ :alpha: 255
2354
2098
  - StoneWall:
2355
2099
  :x: 288.0
2356
2100
  :y: 240.0
@@ -2358,7 +2102,7 @@
2358
2102
  :zorder: 100
2359
2103
  :factor_x: 1
2360
2104
  :factor_y: 1
2361
- :color: 4294967295
2105
+ :alpha: 255
2362
2106
  - StoneWall:
2363
2107
  :x: 336.0
2364
2108
  :y: 224.0
@@ -2366,7 +2110,7 @@
2366
2110
  :zorder: 100
2367
2111
  :factor_x: 1
2368
2112
  :factor_y: 1
2369
- :color: 4294967295
2113
+ :alpha: 255
2370
2114
  - Star:
2371
2115
  :x: 328.0
2372
2116
  :y: 560.0
@@ -2374,7 +2118,7 @@
2374
2118
  :zorder: 100
2375
2119
  :factor_x: 1
2376
2120
  :factor_y: 1
2377
- :color: 4282824932
2121
+ :alpha: 255
2378
2122
  - Star:
2379
2123
  :x: 360.0
2380
2124
  :y: 544.0
@@ -2382,7 +2126,7 @@
2382
2126
  :zorder: 100
2383
2127
  :factor_x: 1
2384
2128
  :factor_y: 1
2385
- :color: 4284564945
2129
+ :alpha: 255
2386
2130
  - Star:
2387
2131
  :x: 320.0
2388
2132
  :y: 528.0
@@ -2390,7 +2134,7 @@
2390
2134
  :zorder: 100
2391
2135
  :factor_x: 1
2392
2136
  :factor_y: 1
2393
- :color: 4290431385
2137
+ :alpha: 255
2394
2138
  - StoneWall:
2395
2139
  :x: 448.0
2396
2140
  :y: 640.0
@@ -2398,7 +2142,7 @@
2398
2142
  :zorder: 100
2399
2143
  :factor_x: 1
2400
2144
  :factor_y: 1
2401
- :color: 4294967295
2145
+ :alpha: 255
2402
2146
  - Star:
2403
2147
  :x: 368.0
2404
2148
  :y: 584.0
@@ -2406,7 +2150,7 @@
2406
2150
  :zorder: 100
2407
2151
  :factor_x: 1
2408
2152
  :factor_y: 1
2409
- :color: 4283655650
2153
+ :alpha: 255
2410
2154
  - Star:
2411
2155
  :x: 376.0
2412
2156
  :y: 528.0
@@ -2414,7 +2158,7 @@
2414
2158
  :zorder: 100
2415
2159
  :factor_x: 1
2416
2160
  :factor_y: 1
2417
- :color: 4290567513
2161
+ :alpha: 255
2418
2162
  - Star:
2419
2163
  :x: 384.0
2420
2164
  :y: 568.0
@@ -2422,7 +2166,7 @@
2422
2166
  :zorder: 100
2423
2167
  :factor_x: 1
2424
2168
  :factor_y: 1
2425
- :color: 4282088124
2169
+ :alpha: 255
2426
2170
  - Star:
2427
2171
  :x: 308.0
2428
2172
  :y: 591.0
@@ -2430,7 +2174,7 @@
2430
2174
  :zorder: 100
2431
2175
  :factor_x: 1
2432
2176
  :factor_y: 1
2433
- :color: 4282618365
2177
+ :alpha: 255
2434
2178
  - Star:
2435
2179
  :x: 292.0
2436
2180
  :y: 561.0
@@ -2438,7 +2182,7 @@
2438
2182
  :zorder: 100
2439
2183
  :factor_x: 1
2440
2184
  :factor_y: 1
2441
- :color: 4284135289
2185
+ :alpha: 255
2442
2186
  - Star:
2443
2187
  :x: 287.0
2444
2188
  :y: 603.0
@@ -2446,7 +2190,7 @@
2446
2190
  :zorder: 100
2447
2191
  :factor_x: 1
2448
2192
  :factor_y: 1
2449
- :color: 4281573682
2193
+ :alpha: 255
2450
2194
  - Star:
2451
2195
  :x: 296.0
2452
2196
  :y: 528.0
@@ -2454,7 +2198,7 @@
2454
2198
  :zorder: 100
2455
2199
  :factor_x: 1
2456
2200
  :factor_y: 1
2457
- :color: 4294288010
2201
+ :alpha: 255
2458
2202
  - StoneWall:
2459
2203
  :x: 50.0
2460
2204
  :y: 191.0
@@ -2462,7 +2206,7 @@
2462
2206
  :zorder: 100
2463
2207
  :factor_x: 1
2464
2208
  :factor_y: 1
2465
- :color: 4294967295
2209
+ :alpha: 255
2466
2210
  - StoneWall:
2467
2211
  :x: 24.0
2468
2212
  :y: 184.0
@@ -2470,7 +2214,7 @@
2470
2214
  :zorder: 100
2471
2215
  :factor_x: 1
2472
2216
  :factor_y: 1
2473
- :color: 4294967295
2217
+ :alpha: 255
2474
2218
  - StoneWall:
2475
2219
  :x: 79.0
2476
2220
  :y: 176.0
@@ -2478,7 +2222,7 @@
2478
2222
  :zorder: 100
2479
2223
  :factor_x: 1
2480
2224
  :factor_y: 1
2481
- :color: 4294967295
2225
+ :alpha: 255
2482
2226
  - StoneWall:
2483
2227
  :x: 96.0
2484
2228
  :y: 152.0
@@ -2486,7 +2230,7 @@
2486
2230
  :zorder: 100
2487
2231
  :factor_x: 1
2488
2232
  :factor_y: 1
2489
- :color: 4294967295
2233
+ :alpha: 255
2490
2234
  - StoneWall:
2491
2235
  :x: 240.0
2492
2236
  :y: 152.0
@@ -2494,7 +2238,7 @@
2494
2238
  :zorder: 100
2495
2239
  :factor_x: 1
2496
2240
  :factor_y: 1
2497
- :color: 4294967295
2241
+ :alpha: 255
2498
2242
  - StoneWall:
2499
2243
  :x: 75.0
2500
2244
  :y: 426.0
@@ -2502,7 +2246,7 @@
2502
2246
  :zorder: 100
2503
2247
  :factor_x: 1
2504
2248
  :factor_y: 1
2505
- :color: 4294967295
2249
+ :alpha: 255
2506
2250
  - StoneWall:
2507
2251
  :x: 95.0
2508
2252
  :y: 366.0
@@ -2510,7 +2254,7 @@
2510
2254
  :zorder: 100
2511
2255
  :factor_x: 1
2512
2256
  :factor_y: 1
2513
- :color: 4294967295
2257
+ :alpha: 255
2514
2258
  - StoneWall:
2515
2259
  :x: 96.0
2516
2260
  :y: 410.0
@@ -2518,7 +2262,7 @@
2518
2262
  :zorder: 100
2519
2263
  :factor_x: 1
2520
2264
  :factor_y: 1
2521
- :color: 4294967295
2265
+ :alpha: 255
2522
2266
  - StoneWall:
2523
2267
  :x: 133.0
2524
2268
  :y: 382.0
@@ -2526,7 +2270,7 @@
2526
2270
  :zorder: 100
2527
2271
  :factor_x: 1
2528
2272
  :factor_y: 1
2529
- :color: 4294967295
2273
+ :alpha: 255
2530
2274
  - StoneWall:
2531
2275
  :x: 164.0
2532
2276
  :y: 370.0
@@ -2534,7 +2278,7 @@
2534
2278
  :zorder: 100
2535
2279
  :factor_x: 1
2536
2280
  :factor_y: 1
2537
- :color: 4294967295
2281
+ :alpha: 255
2538
2282
  - StoneWall:
2539
2283
  :x: 120.0
2540
2284
  :y: 400.0
@@ -2542,7 +2286,7 @@
2542
2286
  :zorder: 100
2543
2287
  :factor_x: 1
2544
2288
  :factor_y: 1
2545
- :color: 4294967295
2289
+ :alpha: 255
2546
2290
  - StoneWall:
2547
2291
  :x: 73.0
2548
2292
  :y: 142.0
@@ -2550,52 +2294,52 @@
2550
2294
  :zorder: 100
2551
2295
  :factor_x: 1
2552
2296
  :factor_y: 1
2553
- :color: 4294967295
2297
+ :alpha: 255
2554
2298
  - StoneWall:
2555
2299
  :x: 24.0
2556
2300
  :y: 144.0
2557
2301
  :angle: 0
2558
2302
  :zorder: 100
2559
- :factor_x: 1.25
2560
- :factor_y: 1.25
2561
- :color: 4294967295
2303
+ :factor_x: 1
2304
+ :factor_y: 1
2305
+ :alpha: 255
2562
2306
  - StoneWall:
2563
2307
  :x: 24.0
2564
2308
  :y: 104.0
2565
2309
  :angle: 0
2566
2310
  :zorder: 100
2567
- :factor_x: 1.25
2568
- :factor_y: 1.25
2569
- :color: 4294967295
2311
+ :factor_x: 1
2312
+ :factor_y: 1
2313
+ :alpha: 255
2570
2314
  - StoneWall:
2571
2315
  :x: 40.0
2572
2316
  :y: 144.0
2573
2317
  :angle: 0
2574
2318
  :zorder: 100
2575
- :factor_x: 1.25
2576
- :factor_y: 1.25
2577
- :color: 4294967295
2319
+ :factor_x: 1
2320
+ :factor_y: 1
2321
+ :alpha: 255
2578
2322
  - StoneWall:
2579
2323
  :x: 48.0
2580
2324
  :y: 112.0
2581
2325
  :angle: 0
2582
2326
  :zorder: 100
2583
- :factor_x: 1.25
2584
- :factor_y: 1.25
2585
- :color: 4294967295
2327
+ :factor_x: 1
2328
+ :factor_y: 1
2329
+ :alpha: 255
2586
2330
  - StoneWall:
2587
2331
  :x: 24.0
2588
2332
  :y: 72.0
2589
2333
  :angle: 0
2590
2334
  :zorder: 100
2591
- :factor_x: 1.25
2592
- :factor_y: 1.25
2593
- :color: 4294967295
2335
+ :factor_x: 1
2336
+ :factor_y: 1
2337
+ :alpha: 255
2594
2338
  - StoneWall:
2595
2339
  :x: 40.0
2596
2340
  :y: 160.0
2597
2341
  :angle: 0
2598
2342
  :zorder: 100
2599
- :factor_x: 1.25
2600
- :factor_y: 1.25
2601
- :color: 4294967295
2343
+ :factor_x: 1
2344
+ :factor_y: 1
2345
+ :alpha: 255