V0.2.1: Added new blob effect for Fetid Rat

This commit is contained in:
Evan Debenham
2014-10-08 16:00:18 -04:00
parent bba30b473f
commit d8208e5423
3 changed files with 53 additions and 12 deletions
@@ -0,0 +1,41 @@
package com.shatteredpixel.shatteredpixeldungeon.actors.blobs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Ghost;
import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
/**
* Created by debenhame on 08/10/2014.
*/
public class StenchGas extends Blob {
@Override
protected void evolve() {
super.evolve();
Char ch;
for (int i=0; i < LENGTH; i++) {
if (cur[i] > 0 && (ch = Actor.findChar(i)) != null) {
if (!(ch instanceof Ghost.FetidRat))
Buff.prolong(ch, Paralysis.class, Paralysis.duration(ch)/5);
}
}
}
@Override
public void use( BlobEmitter emitter ) {
super.use( emitter );
emitter.pour( Speck.factory(Speck.STENCH), 0.6f );
}
@Override
public String tileDesc() {
return "A cloud of fetid stench is swirling here.";
}
} {
}