X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/gitweb.css?a=blobdiff_plain;f=plugins%2Fserver%2FTheCrawlingEater.py;h=887cdf5811045c1ebeedc2ece2f4853bc4934f14;hb=8126005085e99c63ae99123157ebe91463ee060b;hp=798ad57c0e31fd14e85d6412e97f3f6030c8aec3;hpb=98f19424a1201f9335d7168b3d32150ecc28542b;p=plomrogue diff --git a/plugins/server/TheCrawlingEater.py b/plugins/server/TheCrawlingEater.py index 798ad57..887cdf5 100644 --- a/plugins/server/TheCrawlingEater.py +++ b/plugins/server/TheCrawlingEater.py @@ -254,13 +254,18 @@ 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: + elif world_db["GRACE"] == 8: log("You now have the DEATH touch.") - if world_db["GRACE"] < 24: + elif world_db["GRACE"] == 16: log("You will now LEVITATE over holes.") - world_db["GRACE"] += 8 + elif world_db["GRACE"] == 24: + log("You are now READY to fly through the exit portal.") + elif world_db["GRACE"] == 32: + log("You already have all the GRACE you can get.") + if world_db["GRACE"] <= 24: + world_db["GRACE"] += 8 elif t == world_db["Things"][0]: log("You try to MOVE there, but fail.") @@ -335,7 +340,7 @@ def make_map(): ord("0") == world_db["wetmap"][pos]: world_db["wetmap"][pos] = ord("3") i_water += 1 - n_altars = 4 + n_altars = 8 i_altars = 0 while (i_altars < n_altars): y, x, pos = new_pos() @@ -481,7 +486,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 @@ -817,7 +822,7 @@ def ai(t): world_db["terrain_fullness"](t["pos"]) <= 3: t["T_COMMAND"] = thing_action_id("drop") return - elif world_db["get_dir_to_target"](t, "crack"): + elif world_db["get_dir_to_target"](t, "crack")[0]: return if need[0] in {"fluid_certain", "fluid_potential"}: if standing_on_fluid(t):