Tree RoomUnitStatus

This commit is contained in:
brenoepic 2022-04-09 00:17:00 -03:00
parent 397edaeba8
commit 8509692f4b

View File

@ -64,7 +64,12 @@ public enum RoomUnitStatus {
SLEEP_IN("slp-in"), SLEEP_IN("slp-in"),
SLEEP("slp", true), SLEEP("slp", true),
SLEEP_OUT("slp-out"); SLEEP_OUT("slp-out"),
RINGOFFIRE("rng"), // ring of fire for dragon, toy undone
SWING("swg"), // same as roll but less energic, related to Dragon tree toy.
HANG("hg"), // hang, related to Dragon tree toy. just hangs under the branch
ROLL("rll"); // roll, related to Dragon tree toy. rolls around the branch
public final String key; public final String key;
public final boolean removeWhenWalking; public final boolean removeWhenWalking;