83 lines
2.3 KiB
Java
83 lines
2.3 KiB
Java
/*
|
|
* Pixel Dungeon
|
|
* Copyright (C) 2012-2015 Oleg Dolya
|
|
*
|
|
* Shattered Pixel Dungeon
|
|
* Copyright (C) 2014-2015 Evan Debenham
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
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.Venom;
|
|
import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
|
|
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
|
|
import com.watabou.utils.Bundle;
|
|
|
|
public class VenomGas extends Blob {
|
|
|
|
private int strength = 0;
|
|
|
|
@Override
|
|
protected void evolve() {
|
|
super.evolve();
|
|
|
|
if (volume == 0){
|
|
strength = 0;
|
|
} else {
|
|
Char ch;
|
|
for (int i = 0; i < LENGTH; i++) {
|
|
if (cur[i] > 0 && (ch = Actor.findChar(i)) != null) {
|
|
if (!ch.immunities().contains(this.getClass()))
|
|
Buff.affect(ch, Venom.class).set(2f, strength);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void setStrength(int str){
|
|
if (str > strength)
|
|
strength = str;
|
|
}
|
|
|
|
private static final String STRENGTH = "strength";
|
|
|
|
@Override
|
|
public void restoreFromBundle(Bundle bundle) {
|
|
super.restoreFromBundle(bundle);
|
|
strength = bundle.getInt( STRENGTH );
|
|
}
|
|
|
|
@Override
|
|
public void storeInBundle(Bundle bundle) {
|
|
super.storeInBundle(bundle);
|
|
bundle.put( STRENGTH, strength );
|
|
}
|
|
|
|
@Override
|
|
public void use( BlobEmitter emitter ) {
|
|
super.use( emitter );
|
|
|
|
emitter.pour( Speck.factory(Speck.VENOM), 0.6f );
|
|
}
|
|
|
|
@Override
|
|
public String tileDesc() {
|
|
return "A cloud of foul acidic venom is swirling here.";
|
|
}
|
|
}
|