Beispiel #1
0
    public void OpponentEffect()
    {
        npc.Effect();
        NPCTakesAction recentAction = new NPCTakesAction(npc);

        Services.eventManager.Fire((HotGirlEvent)recentAction);
    }
    public void TakeActionAgain(HotGirlEvent npcTakesAction)
    {
        NPCTakesAction npcActionEvent = (NPCTakesAction)npcTakesAction;

        Services.eventManager.Unregister <NPCTakesAction>(TakeActionAgain);
        Services.encounter.OpponentEffect();
    }