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 2004-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_TarAndFeather extends ThiefSkill
{
@Override
public String ID()
{
return "Thief_TarAndFeather";
}
private final static String localizedName = CMLib.lang().L("Tar And Feather");
@Override
public String name()
{
return localizedName;
}
@Override
public String displayText()
{
return "";
}
@Override
protected int canAffectCode()
{
return CAN_ITEMS;
}
@Override
protected int canTargetCode()
{
return CAN_MOBS;
}
@Override
public int abstractQuality()
{
return Ability.QUALITY_MALICIOUS;
}
@Override
public long flags()
{
return super.flags() | Ability.FLAG_TORTURING;
}
private static final String[] triggerStrings = I(new String[] { "TARANDFEATHER", "TAR" });
@Override
public String[] triggerStrings()
{
return triggerStrings;
}
@Override
protected int overrideMana()
{
return 100;
}
@Override
public int usageType()
{
return USAGE_MOVEMENT | USAGE_MANA;
}
@Override
public int classificationCode()
{
return Ability.ACODE_THIEF_SKILL | Ability.DOMAIN_LEGAL;
}
@Override
public void affectPhyStats(final Physical host, final PhyStats stats)
{
if((affected==null)||(!(affected instanceof Item)))
return;
if((((Item)affected).amWearingAt(Wearable.IN_INVENTORY))||(((Item)affected).amDestroyed()))
{
final Item I=(Item)affected;
affected.delEffect(this);
setAffectedOne(null);
I.destroy();
}
}
@Override
public int castingQuality(final MOB mob, final Physical target)
{
if(mob!=null)
{
if(!(target instanceof MOB))
return Ability.QUALITY_INDIFFERENT;
if(mob.isInCombat())
return Ability.QUALITY_INDIFFERENT;
if(CMLib.flags().isSitting(mob))
return Ability.QUALITY_INDIFFERENT;
if((!CMLib.flags().isBoundOrHeld(target))&&(!CMLib.flags().isSleeping(target)))
return Ability.QUALITY_INDIFFERENT;
}
return super.castingQuality(mob,target);
}
@Override
public boolean invoke(final MOB mob, final List<String> commands, final Physical givenTarget, final boolean auto, final int asLevel)
{
if(mob.isInCombat())
{
mob.tell(L("Not while in combat!"));
return false;
}
final MOB target=getTarget(mob,commands,givenTarget);
if(target==null)
return false;
if(CMLib.flags().isSitting(mob))
{
mob.tell(L("You need to stand up!"));
return false;
}
if(!CMLib.flags().isAliveAwakeMobileUnbound(mob,false))
return false;
if((!auto)
&&(!CMLib.flags().isBoundOrHeld(target))
&&(!CMLib.flags().isSleeping(target)))
{
mob.tell(L("@x1 must be prone or bound first.",target.name(mob)));
return false;
}
for(int i=0;i<target.numItems();i++)
{
final Item I=target.getItem(i);
if((I!=null)&&(!I.amWearingAt(Wearable.IN_INVENTORY))&&(!I.amWearingAt(Wearable.WORN_FLOATING_NEARBY)))
{
mob.tell(L("@x1 must be undressed first.",target.name(mob)));
return false;
}
}
if(!super.invoke(mob,commands,givenTarget,auto,asLevel))
return false;
final boolean success=proficiencyCheck(mob,0,auto);
if(success)
{
final Map<MOB,MOB> combatState = saveCombatState(mob,true);
final CMMsg msg=CMClass.getMsg(mob,target,this,CMMsg.MASK_MALICIOUS|CMMsg.MSG_THIEF_ACT,L("<S-NAME> tar(s) and feather(s) <T-NAMESELF>!"));
if(mob.location().okMessage(mob,msg))
{
mob.location().send(mob,msg);
restoreCombatState(combatState);
final Item I=CMClass.getArmor("GenArmor");
if(I!=null)
{
target.addItem(I);
long wearCode=0;
final Wearable.CODES codes = Wearable.CODES.instance();
for(int i=0;i<codes.all_ordered().length;i++)
{
final long code = codes.all_ordered()[i];
if((!CMath.bset(target.charStats().getWearableRestrictionsBitmap(),code))
&&(code!=Wearable.WORN_FLOATING_NEARBY)
&&(code!=Wearable.WORN_EYES)
&&(code!=Wearable.WORN_MOUTH))
wearCode|=code;
}
for(int i=0;i<Race.BODY_WEARGRID.length;i++)
{
if((target.charStats().getBodyPart(i)<=0)
&&(Race.BODY_WEARGRID[i][1]>0))
wearCode=CMath.unsetb(wearCode,Race.BODY_WEARGRID[i][0]);
}
I.setRawProperLocationBitmap(wearCode);
I.setRawWornCode(wearCode);
I.setName(L("a coating of tar and feathers"));
I.setDisplayText(L("a pile of tar and feathers sits here."));
I.basePhyStats().setSensesMask(PhyStats.SENSE_ITEMNOREMOVE);
I.phyStats().setSensesMask(PhyStats.SENSE_ITEMNOREMOVE);
I.setRawLogicalAnd(true);
I.addNonUninvokableEffect((Ability)this.copyOf());
final Behavior B=CMClass.getBehavior("Decay");
final long thetime=(long)CMProps.getIntVar(CMProps.Int.TICKSPERMUDDAY)*3;
B.setParms("notrigger=1 answer=dissolves! min="+thetime+" max="+thetime+" chance=100");
I.addBehavior(B);
}
}
}
else
maliciousFizzle(mob,target,L("<S-NAME> attempt(s) to tar and feather <T-NAMESELF>, but fail(s)."));
return success;
}
}