Exemple #1
0
 public override void SetWithArgs(ProppStory story, List <string> arguments)
 {
     base.SetWithArgs(story, arguments);
     performChar = story.FindCharacterName(arguments[0]);
     targetChar  = story.FindCharacterName(arguments[1]);
     obj         = story.FindCharacterName(arguments[2]);
 }
 public override void SetWithArgs(ProppStory story, List <string> arguments)
 {
     base.SetWithArgs(story, arguments);
     performChar       = story.FindCharacterName(arguments[0]);
     targetChar        = story.FindCharacterName(arguments[1]);
     liquidationAction = story.villainy.liquidationAction;
 }
Exemple #3
0
 public override void SetWithArgs(ProppStory story, List <string> arguments)
 {
     base.SetWithArgs(story, arguments);
     performChar = story.FindCharacterName(arguments[0]);
     targetChar  = story.FindCharacterName(arguments[1]);
     contents    = arguments[2];
     if (contents == "interdiction")
     {
         contents  = story.interdiction.DescriptionAsNoun();
         contents += "을 금지한다고"
         ;
     }
 }
 public override void SetWithArgs(ProppStory story, List <string> arguments)
 {
     base.SetWithArgs(story, arguments);
     performChar = story.FindCharacterName(arguments[0]);
     contents    = arguments[1];
     if (contents == "villainy")
     {
         contents = story.villainy.villainyAction.DescriptionAsNoun();
     }
 }
Exemple #5
0
 public override void SetWithArgs(ProppStory story, List <string> arguments)
 {
     base.SetWithArgs(story, arguments);
     violateChar   = story.FindCharacterName(arguments[0]);
     violateAction = story.interdiction;
 }