adonthell-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[adonthell-wastesedge-commits] Release_0-3-1 4b05883 005/237: New data t


From: Kai Sterker
Subject: [adonthell-wastesedge-commits] Release_0-3-1 4b05883 005/237: New data tree imported
Date: Mon, 25 Jul 2016 18:14:52 +0000 (UTC)

tag: Release_0-3-1
commit 4b058839617ce45d1a7d6076dd7c7e65b4a6ffd9
Author: Alexandre Courbot <address@hidden>
Commit: Alexandre Courbot <address@hidden>

    New data tree imported
---
 gfx/mapobjects/icons/arrows/green-down.mobj  |  Bin 0 -> 213 bytes
 gfx/mapobjects/icons/arrows/green-left.mobj  |  Bin 0 -> 229 bytes
 gfx/mapobjects/icons/arrows/green-right.mobj |  Bin 0 -> 231 bytes
 gfx/mapobjects/icons/arrows/green-up.mobj    |  Bin 0 -> 226 bytes
 gfx/mapobjects/icons/arrows/red-down.mobj    |  Bin 0 -> 211 bytes
 gfx/mapobjects/icons/arrows/red-left.mobj    |  Bin 0 -> 229 bytes
 gfx/mapobjects/icons/arrows/red-right.mobj   |  Bin 0 -> 230 bytes
 gfx/mapobjects/icons/arrows/red-up.mobj      |  Bin 0 -> 226 bytes
 maps/test.map                                |  Bin 0 -> 697 bytes
 scripts/events/common_to_kitchen.py          |   22 ++++++++++++++++++++++
 scripts/events/common_to_parlor.py           |   22 ++++++++++++++++++++++
 scripts/events/kitchen_to_common.py          |   22 ++++++++++++++++++++++
 scripts/events/kitchen_to_yard.py            |   22 ++++++++++++++++++++++
 scripts/events/parlor_to_common.py           |   22 ++++++++++++++++++++++
 scripts/events/yard_to_kitchen.py            |   22 ++++++++++++++++++++++
 15 files changed, 132 insertions(+)

diff --git a/gfx/mapobjects/icons/arrows/green-down.mobj 
b/gfx/mapobjects/icons/arrows/green-down.mobj
new file mode 100755
index 0000000..bb5cfa5
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/green-down.mobj differ
diff --git a/gfx/mapobjects/icons/arrows/green-left.mobj 
b/gfx/mapobjects/icons/arrows/green-left.mobj
new file mode 100755
index 0000000..781807f
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/green-left.mobj differ
diff --git a/gfx/mapobjects/icons/arrows/green-right.mobj 
b/gfx/mapobjects/icons/arrows/green-right.mobj
new file mode 100755
index 0000000..5549a2f
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/green-right.mobj differ
diff --git a/gfx/mapobjects/icons/arrows/green-up.mobj 
b/gfx/mapobjects/icons/arrows/green-up.mobj
new file mode 100755
index 0000000..e0078de
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/green-up.mobj differ
diff --git a/gfx/mapobjects/icons/arrows/red-down.mobj 
b/gfx/mapobjects/icons/arrows/red-down.mobj
new file mode 100755
index 0000000..62c210d
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/red-down.mobj differ
diff --git a/gfx/mapobjects/icons/arrows/red-left.mobj 
b/gfx/mapobjects/icons/arrows/red-left.mobj
new file mode 100755
index 0000000..12e8f10
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/red-left.mobj differ
diff --git a/gfx/mapobjects/icons/arrows/red-right.mobj 
b/gfx/mapobjects/icons/arrows/red-right.mobj
new file mode 100755
index 0000000..536aeb0
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/red-right.mobj differ
diff --git a/gfx/mapobjects/icons/arrows/red-up.mobj 
b/gfx/mapobjects/icons/arrows/red-up.mobj
new file mode 100755
index 0000000..98cca79
Binary files /dev/null and b/gfx/mapobjects/icons/arrows/red-up.mobj differ
diff --git a/maps/test.map b/maps/test.map
new file mode 100755
index 0000000..b0d7165
Binary files /dev/null and b/maps/test.map differ
diff --git a/scripts/events/common_to_kitchen.py 
b/scripts/events/common_to_kitchen.py
new file mode 100755
index 0000000..a12c567
--- /dev/null
+++ b/scripts/events/common_to_kitchen.py
@@ -0,0 +1,22 @@
+p = characters [name]
+p.set_schedule_active (0)
+p.stand ()
+i = 0
+while i < 60:
+  map_engine.mainloop ()
+  screen_transition (i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i + (gametime_frames_to_do () * 2)
+
+p.jump_to (3, 1, 2, STAND_SOUTH)
+i=60
+
+while i > 0:
+  map_engine.mainloop ()
+  screen_transition(i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i - (gametime_frames_to_do () * 2)
+  
+p.set_schedule_active (1)
diff --git a/scripts/events/common_to_parlor.py 
b/scripts/events/common_to_parlor.py
new file mode 100755
index 0000000..ab2f1fb
--- /dev/null
+++ b/scripts/events/common_to_parlor.py
@@ -0,0 +1,22 @@
+p = characters [name]
+p.set_schedule_active (0)
+p.stand ()
+i = 0
+while i < 60:
+  map_engine.mainloop ()
+  screen_transition (i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i + (gametime_frames_to_do () * 2)
+
+p.jump_to (2, 1, 3, STAND_EAST)
+i=60
+
+while i > 0:
+  map_engine.mainloop ()
+  screen_transition(i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i - (gametime_frames_to_do () * 2)
+  
+p.set_schedule_active (1)
diff --git a/scripts/events/kitchen_to_common.py 
b/scripts/events/kitchen_to_common.py
new file mode 100755
index 0000000..35f9d98
--- /dev/null
+++ b/scripts/events/kitchen_to_common.py
@@ -0,0 +1,22 @@
+p = characters [name]
+p.set_schedule_active (0)
+p.stand ()
+i = 0
+while i < 60:
+  map_engine.mainloop ()
+  screen_transition (i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i + (gametime_frames_to_do () * 2)
+
+p.jump_to (1, 1, 5, STAND_NORTH)
+i=60
+
+while i > 0:
+  map_engine.mainloop ()
+  screen_transition(i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i - (gametime_frames_to_do () * 2)
+  
+p.set_schedule_active (1)
diff --git a/scripts/events/kitchen_to_yard.py 
b/scripts/events/kitchen_to_yard.py
new file mode 100755
index 0000000..fd9259c
--- /dev/null
+++ b/scripts/events/kitchen_to_yard.py
@@ -0,0 +1,22 @@
+p = characters [name]
+p.set_schedule_active (0)
+p.stand ()
+i = 0
+while i < 60:
+  map_engine.mainloop ()
+  screen_transition (i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i + (gametime_frames_to_do () * 2)
+
+p.jump_to (0, 12, 14, STAND_EAST)
+i=60
+
+while i > 0:
+  map_engine.mainloop ()
+  screen_transition(i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i - (gametime_frames_to_do () * 2)
+  
+p.set_schedule_active (1)
diff --git a/scripts/events/parlor_to_common.py 
b/scripts/events/parlor_to_common.py
new file mode 100755
index 0000000..6299ea8
--- /dev/null
+++ b/scripts/events/parlor_to_common.py
@@ -0,0 +1,22 @@
+p = characters [name]
+p.set_schedule_active (0)
+p.stand ()
+i = 0
+while i < 60:
+  map_engine.mainloop ()
+  screen_transition (i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i + (gametime_frames_to_do () * 2)
+
+p.jump_to (1, 13, 3, STAND_WEST)
+i=60
+
+while i > 0:
+  map_engine.mainloop ()
+  screen_transition(i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i - (gametime_frames_to_do () * 2)
+  
+p.set_schedule_active (1)
diff --git a/scripts/events/yard_to_kitchen.py 
b/scripts/events/yard_to_kitchen.py
new file mode 100755
index 0000000..e3bc4d2
--- /dev/null
+++ b/scripts/events/yard_to_kitchen.py
@@ -0,0 +1,22 @@
+p = characters [name]
+p.set_schedule_active (0)
+p.stand ()
+i = 0
+while i < 60:
+  map_engine.mainloop ()
+  screen_transition (i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i + (gametime_frames_to_do () * 2)
+
+p.jump_to (3, 6, 2, STAND_WEST)
+i=60
+
+while i > 0:
+  map_engine.mainloop ()
+  screen_transition(i * 2)
+  screen_show ()
+  gametime_update ()
+  i = i - (gametime_frames_to_do () * 2)
+  
+p.set_schedule_active (1)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]