if (nowStr.equals("custom")) {
String nextString = analyst.getNextString();
int var = analyst.getNextNumber();
lastCreature.customValues.put(nextString, new Int(var));
withResult = true;
}
if (nowStr.equals("card")) {
if (lastCreature.cards == null) {
lastCreature.cards = new ArrayList<Cards>();
}
lastCreature.cards.add(Cards.getCardsByCode(analyst.getNextString()));
withResult = true;
}
if (nowStr.equals("focussound")) {
//lastCreature.focusSounds.add(Sounds.getSoundByCode(analyst.getNextString()));
lastCreature.focusSounds.add(SoundsGDX.getSoundByCode(analyst.getNextString()));
withResult = true;
}
if (nowStr.equals("ordersound")) {
//lastCreature.orderSounds.add(Sounds.getSoundByCode(analyst.getNextString()));
lastCreature.orderSounds.add(SoundsGDX.getSoundByCode(analyst.getNextString()));
withResult = true;
}
if (nowStr.equals("equip")) {
lastCreature.equippedItems.add(new Int(analyst.getBinding(Binding.itemBinding)));
withResult = true;
}
if (nowStr.equals("group")) {