1 package org
.sevenchan
.dongs
.ability
3 import org
.sevenchan
.dongs
.enchantment
.Paralyze
;
4 import org
.sevenchan
.dongs
.screens
.InfoScreen
;
5 import org
.sevenchan
.dongs
.Ability
;
6 import org
.sevenchan
.dongs
.Creature
;
12 public class Spore
extends Ability
15 public function Spore
()
18 this.description
= "Paralyzes your ass.";
21 this.cannotBeRestrainedToUse
= false;
24 override public function activate
(activator
:Creature
, rapee
:Creature
):Boolean
26 if (rapee
.hasEnchantment
("paralyze"))
28 InfoScreen
.push
("<h2>Spore</h2><p>The Morel releases a cloud of spores from the cap on its head. Surprised, you inhale the spores, coughing a bit. Feeling lightheaded, you slump to the ground, paralyzed.</p>");
29 rapee
.addEnchantment
(new Paralyze
());