package com.planet_ink.coffee_mud.Abilities.Common;
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.Locales.interfaces.*;
import com.planet_ink.coffee_mud.Libraries.interfaces.*;
import com.planet_ink.coffee_mud.MOBS.interfaces.*;
import com.planet_ink.coffee_mud.Races.interfaces.*;
import java.util.*;
/*
Copyright 2002-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 Apothecary extends Cooking
{
@Override
public String ID()
{
return "Apothecary";
}
private final static String localizedName = CMLib.lang().L("Apothecary");
@Override
public String name()
{
return localizedName;
}
private static final String[] triggerStrings =I(new String[] {"APOTHECARY","MIX"});
@Override
public String[] triggerStrings()
{
return triggerStrings;
}
@Override
public String supportedResourceString()
{
return "MISC";
}
@Override
public String cookWordShort()
{
return "mix";
}
@Override
public String cookWord()
{
return "mixing";
}
@Override
public boolean honorHerbs()
{
return false;
}
@Override
protected ExpertiseLibrary.SkillCostDefinition getRawTrainingCost()
{
return CMProps.getNormalSkillGainCost(ID());
}
@Override
public String parametersFile()
{
return "poisons.txt";
}
@Override
public void stirThePot(final MOB mob)
{
if(buildingI!=null)
{
if((tickUp % 5)==1)
{
final Room R=mob.location();
if(R==activityRoom)
{
R.show(mob,cookingPot,buildingI,CMMsg.MASK_ALWAYS|getActivityMessageType(),
L("<S-NAME> stir(s) the <O-NAME> in <T-NAME>."));
}
}
}
}
@Override
protected List<List<String>> loadRecipes()
{
if(text().toUpperCase().indexOf("ANTIDOTE")<0)
return super.loadRecipes();
final String filename=parametersFile();
@SuppressWarnings("unchecked")
List<List<String>> recipes=(List<List<String>>)Resources.getResource("PARSED_ANTIDOTE_RECIPE: "+filename);
if(recipes==null)
{
final StringBuffer str=new CMFile(Resources.buildResourcePath("skills")+filename,null,CMFile.FLAG_LOGERRORS).text();
recipes=loadList(str);
if(recipes.size()==0)
Log.errOut("Apothecary","Recipes not found!");
else
{
for(int r=recipes.size()-1;r>=0;r--)
{
final List<String> V=recipes.get(r);
if(V.size()>RCP_BONUSSPELL)
{
final String spells=V.get(RCP_BONUSSPELL);
final List<Ability> spellsV=CMLib.ableParms().getCodedSpells(spells);
if(spellsV.size()>0)
{
final String name=V.get(RCP_FINALNAME);
V.set(RCP_FINALNAME,L("@x1 antidote",name));
}
else
recipes.remove(r);
}
else
recipes.remove(r);
}
}
Resources.submitResource("PARSED_ANTIDOTE_RECIPE: "+filename,recipes);
}
return recipes;
}
public Apothecary()
{
super();
defaultFoodSound = "hotspring.wav";
defaultDrinkSound = "hotspring.wav";
}
@Override
public boolean supportsDeconstruction()
{
return false;
}
@Override
public boolean mayICraft(final Item I)
{
if(I==null)
return false;
if(!super.mayBeCrafted(I))
return false;
if(I instanceof Perfume)
{
return true;
}
else
if(I instanceof Drink)
{
final Drink D=(Drink)I;
if(D.liquidType()!=RawMaterial.RESOURCE_POISON)
return false;
if(CMLib.flags().flaggedAffects(I, Ability.FLAG_INTOXICATING).size()>0)
return false;
if(CMLib.flags().domainAffects(I, Ability.ACODE_POISON).size()>0)
return true;
return true;
}
else
if(I instanceof MagicDust)
{
final MagicDust M=(MagicDust)I;
final List<Ability> spells=M.getSpells();
if((spells == null)||(spells.size()==0))
return false;
return true;
}
else
return false;
}
@Override
public boolean invoke(final MOB mob, final List<String> commands, final Physical givenTarget, final boolean auto, final int asLevel)
{
if((!super.invoke(mob,commands,givenTarget,auto,asLevel))||(buildingI==null))
return false;
final Ability A2=buildingI.fetchEffect(0);
if((A2!=null)
&&(buildingI instanceof Drink))
{
if(text().toUpperCase().indexOf("ANTIDOTE")<0)
{
((Drink)buildingI).setLiquidType(RawMaterial.RESOURCE_POISON);
buildingI.setMaterial(RawMaterial.RESOURCE_POISON);
}
else
{
((Drink)buildingI).setLiquidType(RawMaterial.RESOURCE_DRINKABLE);
buildingI.setMaterial(RawMaterial.RESOURCE_DRINKABLE);
final Ability antidoteA=CMClass.getAbility("Antidote");
boolean found=false;
for(int i=buildingI.numEffects()-1;i>=0;i--)
{
final Ability A=buildingI.fetchEffect(i);
if((A!=null)&&((A.classificationCode()&Ability.ALL_ACODES)==Ability.ACODE_POISON))
{
found=true;
antidoteA.setMiscText(antidoteA.text()+" "+A.ID());
buildingI.delEffect(A);
}
}
if(found)
buildingI.addNonUninvokableEffect(antidoteA);
}
}
return true;
}
}