Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / ability / Rainstorm.as
blobc3743c537dbe7af90a57850db96fab860a5c4f53
1 package org.sevenchan.dongs.ability
3 import org.sevenchan.dongs.Ability;
4 import org.sevenchan.dongs.Creature;
5 import org.sevenchan.dongs.screens.InfoScreen;
7 /**
8 * ...
9 * @author Harbinger
11 public class Rainstorm extends Ability
14 public function Rainstorm()
16 this.description = "";
17 this.label = "Rainstorm";
18 this.name = "Rainstorm";
19 this.manaCost = 10;
20 this.cannotBeRestrainedToUse = false;
23 override public function activate(activator:Creature, rapee:Creature):Boolean
25 rapee.HP -= 5;
26 rapee.loseTurns(1);
27 InfoScreen.push("<p>The great beast laughs, and a heavy downpour begins. The ground muddies almost immediately, causing you to lose your footing.</p>");
28 return true;