home
·
contact
·
privacy
projects
/
plomrogue
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
9846a85
)
TCE: Make Thing's stomach value a T_STOMACH commanded value.
author
Christian Heller
<c.heller@plomlompom.de>
Mon, 7 Mar 2016 23:36:07 +0000
(
00:36
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Mon, 7 Mar 2016 23:36:07 +0000
(
00:36
+0100)
plugins/server/TheCrawlingEater.py
patch
|
blob
|
history
diff --git
a/plugins/server/TheCrawlingEater.py
b/plugins/server/TheCrawlingEater.py
index 1e676a5618f5b2fcfb1a1624d6ae7aa8d93f76de..41fdd1438d9cbfd1d9d1e2a93ebf6de523e16a11 100644
(file)
--- a/
plugins/server/TheCrawlingEater.py
+++ b/
plugins/server/TheCrawlingEater.py
@@
-65,7
+65,7
@@
def actor_move(t):
else:
if ord("#") == world_db["MAP"][pos] and 0 == int(rand.next() % 5):
world_db["MAP"][pos] = ord(".")
else:
if ord("#") == world_db["MAP"][pos] and 0 == int(rand.next() % 5):
world_db["MAP"][pos] = ord(".")
- t["STOMACH"] += 1
+ t["
T_
STOMACH"] += 1
def turn_over():
def turn_over():
@@
-155,7
+155,7
@@
def play_wait():
#server.config.actions.actor_move_attempts_hook = actor_move_attempts_hook
import server.config.world_data
server.config.world_data.symbols_hide += "#"
#server.config.actions.actor_move_attempts_hook = actor_move_attempts_hook
import server.config.world_data
server.config.world_data.symbols_hide += "#"
-server.config.world_data.thing_defaults["STOMACH"] = 0
+server.config.world_data.thing_defaults["
T_
STOMACH"] = 0
import server.config.make_world_helpers
server.config.make_world_helpers.make_map = make_map
from server.config.commands import commands_db
import server.config.make_world_helpers
server.config.make_world_helpers.make_map = make_map
from server.config.commands import commands_db
@@
-165,6
+165,7
@@
commands_db["wait"] = (0, False, play_wait)
commands_db["drop"] = (1, False, lambda x: None)
commands_db["use"] = (1, False, lambda x: None)
commands_db["pickup"] = (0, False, lambda: None)
commands_db["drop"] = (1, False, lambda x: None)
commands_db["use"] = (1, False, lambda x: None)
commands_db["pickup"] = (0, False, lambda: None)
+commands_db["T_STOMACH"] = (1, False, setter("Thing", "T_STOMACH", 0, 255))
from server.actions import actor_wait
import server.config.actions
server.config.actions.action_db = {
from server.actions import actor_wait
import server.config.actions
server.config.actions.action_db = {