Wind Guardian shit
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / ability / Instawin.as
blob213adf923cb7983e55285f8300d0c15e73d9ba5b
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 N3X15
11 public class Instawin extends Ability
14 public function Instawin()
16 this.manaCost = 0;
17 this.description = "Because the attack damage algorithm is fucked.";
18 this.label = "Instawin";
19 this.name = "Instant Win";
22 override public function activate(activator:Creature, rapee:Creature):Boolean
24 InfoScreen.push("<h2>Insta-win!</h2><p>You fucking cheat and win because N3X15 is too tired to fix the punch damage thing.</p>");
25 rapee.HP = 0;
26 return true;