X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/gitweb.js?a=blobdiff_plain;f=plugins%2Fserver%2FTheCrawlingEater.py;h=e2de2e6f55d1aa8de92e6643c5cfd9e763bce629;hb=842bb83352b0f1d62936c568df766d7502c51071;hp=11955305a180a4840039d2ecbdba52b393914c85;hpb=956a39dff5c15acaf4bb48638b9f7cf03a593d6c;p=plomrogue diff --git a/plugins/server/TheCrawlingEater.py b/plugins/server/TheCrawlingEater.py index 1195530..e2de2e6 100644 --- a/plugins/server/TheCrawlingEater.py +++ b/plugins/server/TheCrawlingEater.py @@ -254,12 +254,14 @@ def actor_move(t): world_db["soundmap"][t["pos"]] = ord("9") if t == world_db["Things"][0] and world_db["MAP"][t["pos"]] == ord("$"): world_db["MAP"][t["pos"]] = ord("0") - if world_db["GRACE"] < 8: + if world_db["GRACE"] == 0: log("You can now eat ALL walls.") - if world_db["GRACE"] < 16: + if world_db["GRACE"] == 8: log("You now have the DEATH touch.") - if world_db["GRACE"] < 24: + if world_db["GRACE"] == 16: log("You will now LEVITATE over holes.") + if world_db["GRACE"] == 24: + log("You are now READY to fly through the exit portal.") if world_db["GRACE"] <= 24: world_db["GRACE"] += 8 elif t == world_db["Things"][0]: @@ -482,7 +484,7 @@ def turn_over(): dirs = "edcxsw" for i in range(len(dirs)): score += libpr.get_neighbor_score(i) - if score == 5 or score == 6: + if score == 6: world_db["MAP"][pos] = ord("&") libpr.free_score_map() world_db["TURN"] += 1