public override IQuestAction CreateNew(string source, Quest parentQuest) { // Source must match pattern Match match = Test(source); if (!match.Success) { return(null); } // Factory new action PlaceNpc action = new PlaceNpc(parentQuest); action.npcSymbol = new Symbol(match.Groups["anNPC"].Value); action.placeSymbol = new Symbol(match.Groups["aPlace"].Value); // Set custom marker Group markerGroup = match.Groups["marker"]; if (markerGroup.Success) { action.marker = Parser.ParseInt(markerGroup.Value); } return(action); }
public override IQuestAction CreateNew(string source, Quest parentQuest) { // Source must match pattern Match match = Test(source); if (!match.Success) { return(null); } // Factory new action PlaceNpc action = new PlaceNpc(parentQuest); action.npcSymbol = new Symbol(match.Groups["anNPC"].Value); action.placeSymbol = new Symbol(match.Groups["aPlace"].Value); return(action); }