Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / ability / Instawin.as
blob0448de7a7f7a29494978cdc96a6ce8e70eb187a1
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 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";
20 this.cannotBeRestrainedToUse = false;
23 override public function activate(activator:Creature, rapee:Creature):Boolean
25 InfoScreen.push("<h2>Insta-win!</h2><p>You fucking cheat and win because Harbinger is too tired to fix the punch damage thing.</p>");
26 rapee.HP = 0;
27 return true;