package com.planet_ink.coffee_mud.Abilities.Properties;
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 Prop_AstralSpirit extends Property
{
@Override
public String ID()
{
return "Prop_AstralSpirit";
}
@Override
public String name()
{
return "Astral Spirit";
}
private final static String localizedStaticDisplay = CMLib.lang().L("(Spirit Form)");
@Override
public String displayText()
{
return localizedStaticDisplay;
}
@Override
protected int canAffectCode()
{
return Ability.CAN_MOBS;
}
private Race race = null;
@Override
public long flags()
{
return Ability.FLAG_ADJUSTER | Ability.FLAG_IMMUNER;
}
public Race spiritRace()
{
if(race==null)
race=CMClass.getRace("Spirit");
return race;
}
@Override
public boolean autoInvocation(final MOB mob, final boolean force)
{
if((mob!=null)&&(mob.fetchEffect(ID())==null))
{
mob.addNonUninvokableEffect(this);
return true;
}
return false;
}
@Override
public String accountForYourself()
{
return "an astral spirit";
}
public void peaceAt(final MOB mob)
{
final Room room=mob.location();
if(room==null)
return;
for(int m=0;m<room.numInhabitants();m++)
{
final MOB inhab=room.fetchInhabitant(m);
if((inhab!=null)&&(inhab.getVictim()==mob))
inhab.setVictim(null);
}
}
@Override
public boolean okMessage(final Environmental myHost, final CMMsg msg)
{
if(!(affected instanceof MOB))
return true;
final MOB mob=(MOB)affected;
if((msg.amISource(mob))&&(!msg.sourceMajor(CMMsg.MASK_ALWAYS)))
{
if((msg.sourceMinor()==CMMsg.TYP_DISPOSSESS)&&(msg.source().soulMate()!=null))
{
Ability A=msg.source().fetchEffect("Chant_AstralProjection");
if(A==null)
A=msg.source().soulMate().fetchEffect("Chant_AstralProjection");
if(A!=null)
{
A.unInvoke();
return false;
}
}
else
if((msg.targetMinor()==CMMsg.TYP_SIT)&&(msg.target() instanceof DeadBody))
{
final Vector<String> V=CMParms.parse(text().toUpperCase());
if(!V.contains("SELF-RES"))
{
mob.tell(L("You lack that power"));
return false;
}
}
if((msg.tool()!=null)&&(msg.tool().ID().equalsIgnoreCase("Skill_Revoke")))
return super.okMessage(myHost,msg);
else
if(msg.targetMinor()==CMMsg.TYP_WEAPONATTACK)
{
mob.tell(L("You are unable to attack in this incorporeal form."));
peaceAt(mob);
return false;
}
else
if((msg.sourceMajor(CMMsg.MASK_HANDS))||(msg.sourceMajor(CMMsg.MASK_MOUTH)))
{
if(msg.sourceMajor(CMMsg.MASK_SOUND))
mob.tell(L("You are unable to make sounds in this incorporeal form."));
else
mob.tell(L("You are unable to do that this incorporeal form."));
peaceAt(mob);
return false;
}
}
else
if((msg.amITarget(mob))&&(!msg.amISource(mob))
&&(!msg.targetMajor(CMMsg.MASK_ALWAYS)))
{
mob.tell(L("@x1 doesn't seem to be here.",mob.name()));
return false;
}
return true;
}
@Override
public void affectCharStats(final MOB affected, final CharStats affectableStats)
{
affectableStats.setMyRace(spiritRace());
affectableStats.setWearableRestrictionsBitmap(affectableStats.getWearableRestrictionsBitmap()|affectableStats.getMyRace().forbiddenWornBits());
super.affectCharStats(affected, affectableStats);
}
@Override
public void affectPhyStats(final Physical affected, final PhyStats affectableStats)
{
super.affectPhyStats(affected,affectableStats);
// when this spell is on a MOBs Affected list,
// it should consistantly put the mob into
// a sleeping state, so that nothing they do
// can get them out of it.
affectableStats.setWeight(0);
affectableStats.setHeight(-1);
affectableStats.setName(L("The spirit of @x1",affected.name()));
affectableStats.setDisposition(affectableStats.disposition()|PhyStats.IS_GOLEM);
affectableStats.setDisposition(affectableStats.disposition()|PhyStats.IS_INVISIBLE);
affectableStats.setDisposition(affectableStats.disposition()|PhyStats.IS_NOT_SEEN);
affectableStats.setDisposition(affectableStats.disposition()|PhyStats.IS_FLYING);
affectableStats.setDisposition(affectableStats.disposition()&~PhyStats.IS_SITTING);
affectableStats.setDisposition(affectableStats.disposition()&~PhyStats.IS_SLEEPING);
affectableStats.setDisposition(affectableStats.disposition()&~PhyStats.IS_CUSTOM);
affectableStats.setSensesMask(affectableStats.sensesMask()&~PhyStats.CAN_NOT_MOVE);
affectableStats.setSensesMask(affectableStats.sensesMask()|PhyStats.CAN_NOT_SPEAK);
affectableStats.setSensesMask(affectableStats.sensesMask()|PhyStats.CAN_SEE_DARK);
}
}