public GetFightersLevelSum(final ArrayList<ParserObject> args) { super(); if (args.isEmpty()) { return; } this.m_monsters = "monster".equalsIgnoreCase(args.get(0).getValue()); }
public HasWorldProperty(final ArrayList<ParserObject> args) { super(); final byte sigIdx = this.checkType(args); this.m_worldPropertyId = args.get(0); if (sigIdx == 1) { this.m_durationToCheck = args.get(1); } if (sigIdx == 2) { this.m_target = args.get(1).getValue().equalsIgnoreCase("target"); } }