示例#1
0
    public override void PlayEvent()
    {
        Text       = "...So get lost, if you know what's good for you.";
        EventActor = Actors.AI_Plant_JULES_FERN();

        {
            var choice = NewChoice("[hurt] affirmative.");
        }
    }
示例#2
0
    public override void StartEvent()
    {
        Text = "So get lost, if you know what's good for you.";
        ConversationActor = Actors.AI_Plant_JULES_FERN();

        {
            var choice = NewEventChoice("[hurt] affirmative.");
        }
    }
示例#3
0
    public override void PlayEvent()
    {
        Text       = "...a robot must protect its own existence as long as such protection does not conflict with the First or Second Laws...";
        EventActor = Actors.AI_Plant_JULES_FERN();

        {
            var choice = NewChoice("[curious] affirmative.");
            choice.AddNextEvent <Plant_C_Interaction_2>();
        }
    }