You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Gunk Up — The monster's growth timer decreases by 1. If the timer has hit 0, it then transforms into an adult gunk."
675
669
(-= @growth-timer 1)
676
670
(when (= @growth-timer 0)
677
-
(make-monster @pos "gunk")
671
+
(@make @pos "gunk")
678
672
(@rm-from-map)))
679
673
680
674
:flavor "A seed of discord the size of a basketball that can flood a room insde of a minute. Think fast.")
@@ -697,7 +691,7 @@
697
691
698
692
:hook-normal-destruction (meth []
699
693
"A gunk seed is created in its square."
700
-
(make-monster @pos "gunk seed"))
694
+
(@make @pos "gunk seed"))
701
695
702
696
:flavor "A peevish and very prolific pile of puke that pokes with pseudopods. It resists most weapons, and even if you do manage to kill it, it leaves a seed behind.")
0 commit comments