You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.1 KiB
61 lines
2.1 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.powers.effectmodifiers; |
|
|
|
import engine.jobs.AbstractEffectJob; |
|
import engine.mbEnums.GameObjectType; |
|
import engine.objects.*; |
|
import engine.wpak.data.ModifierEntry; |
|
|
|
import java.sql.ResultSet; |
|
import java.sql.SQLException; |
|
|
|
public class NoModEffectModifier extends AbstractEffectModifier { |
|
|
|
public NoModEffectModifier(ResultSet rs) throws SQLException { |
|
super(rs); |
|
} |
|
|
|
public NoModEffectModifier(ModifierEntry rs) { |
|
super(rs); |
|
} |
|
|
|
@Override |
|
protected void _applyEffectModifier(AbstractCharacter source, AbstractWorldObject awo, int trains, AbstractEffectJob effect) { |
|
//TODO check if anything needs removed. |
|
} |
|
|
|
@Override |
|
public void applyBonus(AbstractCharacter ac, int trains) { |
|
PlayerBonuses bonus = ac.getBonuses(); |
|
bonus.setBool(this.modType, this.sourceType, true); |
|
|
|
switch (this.sourceType) { |
|
case Fly: |
|
if (!ac.getObjectType().equals(GameObjectType.PlayerCharacter)) |
|
return; |
|
PlayerCharacter flyer = (PlayerCharacter) ac; |
|
|
|
if (flyer.getAltitude() > 0) |
|
flyer.update(); |
|
PlayerCharacter.GroundPlayer(flyer); |
|
break; |
|
|
|
} |
|
} |
|
|
|
@Override |
|
public void applyBonus(Item item, int trains) { |
|
} |
|
|
|
@Override |
|
public void applyBonus(Building building, int trains) { |
|
} |
|
}
|
|
|