package com.planet_ink.coffee_mud.Abilities.Thief;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import com.planet_ink.coffee_mud.Behaviors.interfaces.*;
import com.planet_ink.coffee_mud.CharClasses.interfaces.*;
import com.planet_ink.coffee_mud.Commands.interfaces.*;
import com.planet_ink.coffee_mud.Common.interfaces.*;
import com.planet_ink.coffee_mud.Exits.interfaces.*;
import com.planet_ink.coffee_mud.Items.interfaces.*;
import com.planet_ink.coffee_mud.Libraries.interfaces.*;
import com.planet_ink.coffee_mud.Locales.interfaces.*;
import com.planet_ink.coffee_mud.MOBS.interfaces.*;
import com.planet_ink.coffee_mud.Races.interfaces.*;
import java.util.*;
/*
Copyright 2003-2019 Bo Zimmerman
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
public class Thief_Caltrops extends ThiefSkill implements Trap
{
@Override
public String ID()
{
return "Thief_Caltrops";
}
private final static String localizedName = CMLib.lang().L("Caltrops");
@Override
public String name()
{
return localizedName;
}
@Override
protected int canAffectCode()
{
return Ability.CAN_ROOMS;
}
@Override
protected int canTargetCode()
{
return Ability.CAN_ROOMS;
}
@Override
public int classificationCode()
{
return Ability.ACODE_THIEF_SKILL | Ability.DOMAIN_TRAPPING;
}
@Override
public int abstractQuality()
{
return Ability.QUALITY_MALICIOUS;
}
private static final String[] triggerStrings = I(new String[] { "CALTROPS" });
@Override
public String[] triggerStrings()
{
return triggerStrings;
}
@Override
public int usageType()
{
return USAGE_MOVEMENT | USAGE_MANA;
}
public String caltropTypeName()
{
return "";
}
@Override
public boolean isABomb()
{
return false;
}
@Override
public void activateBomb()
{
}
@Override
public boolean disabled()
{
return false;
}
@Override
public void disable()
{
unInvoke();
}
@Override
public void setReset(final int Reset)
{
}
@Override
public int getReset()
{
return 0;
}
@Override
public void resetTrap(final MOB mob)
{
}
@Override
public boolean maySetTrap(final MOB mob, final int asLevel)
{
return false;
}
@Override
public boolean canSetTrapOn(final MOB mob, final Physical P)
{
return false;
}
@Override
public boolean canReSetTrap(final MOB mob)
{
return false;
}
@Override
public List<Item> getTrapComponents()
{
return new Vector<Item>(1);
}
@Override
public String requiresToSet()
{
return "";
}
@Override
protected boolean ignoreCompounding()
{
return true;
}
@Override
public Trap setTrap(final MOB mob, final Physical P, final int trapBonus, final int qualifyingClassLevel, final boolean perm)
{
maliciousAffect(mob, P, qualifyingClassLevel + trapBonus, 0, -1);
return (Trap) P.fetchEffect(ID());
}
@Override
public boolean sprung()
{
return false;
}
public boolean isLocalExempt(final MOB target)
{
if(target==null)
return false;
final Room R=target.location();
if((!canBeUninvoked())
&&(!isABomb())
&&(R!=null))
{
if((CMLib.law().getLandTitle(R)!=null)
&&(CMLib.law().doesHavePriviledgesHere(target,R)))
return true;
if((target.isMonster())
&&(target.getStartRoom()!=null)
&&(target.getStartRoom().getArea()==R.getArea()))
return true;
}
return false;
}
protected boolean canInvokeTrapOn(final MOB invoker, final MOB target)
{
if((invoker==null)
||(invoker.mayIFight(target)
&&(!invoker.getGroupMembers(new HashSet<MOB>()).contains(target))))
{
if(!isLocalExempt(target))
return true;
}
return false;
}
@Override
public void spring(final MOB mob)
{
final MOB invoker=(invoker()!=null) ? invoker() : CMLib.map().deity();
if((!canInvokeTrapOn(invoker,mob))
||(CMLib.dice().rollPercentage()<mob.charStats().getSave(CharStats.STAT_SAVE_TRAPS)))
mob.location().show(mob,affected,this,CMMsg.MSG_OK_ACTION,L("<S-NAME> avoid(s) some @x1caltrops on the floor.",caltropTypeName()));
else
CMLib.combat().postDamage(invoker,mob,null,CMLib.dice().roll(1,6,adjustedLevel(invoker(),0)),
CMMsg.MASK_MALICIOUS|CMMsg.TYP_JUSTICE,Weapon.TYPE_PIERCING,L("The @x1caltrops on the ground <DAMAGE> <T-NAME>.",caltropTypeName()));
// does not set sprung flag -- as this trap never goes out of use
}
@Override
public int castingQuality(final MOB mob, Physical target)
{
if(mob!=null)
{
if((target!=null)&&(!(target instanceof Room)))
return Ability.QUALITY_INDIFFERENT;
target=(target!=null)?target:mob.location();
if(target.fetchEffect(ID())!=null)
return Ability.QUALITY_INDIFFERENT;
}
return super.castingQuality(mob,target);
}
@Override
public boolean okMessage(final Environmental myHost, final CMMsg msg)
{
if(affected==null)
return super.okMessage(myHost,msg);
if(!(affected instanceof Room))
return super.okMessage(myHost,msg);
if(invoker()==null)
return super.okMessage(myHost,msg);
final Room room=(Room)affected;
if((msg.amITarget(room)||room.isInhabitant(msg.source()))
&&(!msg.amISource(invoker()))
&&((msg.sourceMinor()==CMMsg.TYP_ENTER)
||(msg.sourceMinor()==CMMsg.TYP_LEAVE)
||(msg.sourceMinor()==CMMsg.TYP_FLEE)
||(msg.sourceMinor()==CMMsg.TYP_ADVANCE)
||(msg.sourceMinor()==CMMsg.TYP_RETREAT)))
spring(msg.source());
return true;
}
@Override
public boolean invoke(final MOB mob, final List<String> commands, final Physical givenTarget, final boolean auto, final int asLevel)
{
final Physical target=(givenTarget!=null)?givenTarget:mob.location();
if(target.fetchEffect(ID())!=null)
{
mob.tell(L("@x1Caltrops have already been tossed down here.",CMStrings.capitalizeFirstLetter(caltropTypeName())));
return false;
}
if(!super.invoke(mob,commands,givenTarget,auto,asLevel))
return false;
boolean success=proficiencyCheck(mob,0,auto);
if(success)
{
if(mob.location().show(mob,null,(auto?CMMsg.MASK_ALWAYS:0)|CMMsg.MSG_THIEF_ACT,L("<S-NAME> throw(s) down @x1caltrops!",caltropTypeName())))
{
if((target instanceof Room)
&&(CMLib.law().doesOwnThisLand(mob,(Room)target)))
target.addNonUninvokableEffect((Ability)this.copyOf());
else
maliciousAffect(mob,target,asLevel,0,-1);
}
else
success=false;
}
else
maliciousFizzle(mob,target,L("<S-NAME> fail(s) to throw down <S-HIS-HER> @x1caltrops properly.",caltropTypeName()));
return success;
}
}