Advertisement
MrFriday

PyTFall training jsons

Sep 2nd, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. From "content/db/traits_training.json":
  2. [
  3.     {
  4.     "id": "Broken",
  5.     "desc": "Her spirit was broken during obedience training.",
  6.     "max": {"character": 50}
  7.     }
  8. ]
  9.  
  10. From "content/db/training_obd.json":
  11. [
  12.     {
  13.     "id": "Obedience",
  14.     "desc": "Training to make the girl more obedient.",
  15.     "jobs": ["Prostitute"],
  16.     "status": ["slave"],
  17.     "options": [
  18.                 {
  19.                 "id": "Talk",
  20.                 "desc": "Talk the girl through exactly what you want and how you're going to do it.",
  21.                 "reqs": {
  22.                         "noTraits": ["Broken"]
  23.                         },
  24.                 "hero": {
  25.                        
  26.                         },
  27.                 "mod": {"character": -10},
  28.                 "label": ["training_obd_talk"]
  29.                 },
  30.                 {
  31.                 "id": "Practice",
  32.                 "desc": "Have the girl practice being obedient by following simple commands.",
  33.                 "reqs": [
  34.                             "or",
  35.                             {
  36.                             "mod": { "lt": {"character": 50}, "gt": {"character": 30} },
  37.                             "noTraits": ["Broken"]
  38.                             },
  39.                             {
  40.                             "traits": ["Broken"]
  41.                             }
  42.                         ],
  43.                 "mod": {"character": -10},
  44.                 "label": ["training_obd_practice"]
  45.                 },
  46.                 {
  47.                 "id": "Break",
  48.                 "desc": "The girl is close to her breaking point. One more push should do it.",
  49.                 "reqs": {
  50.                         "mod": {"le": {"character": 30}},
  51.                         "noTraits": ["Broken"]
  52.                         },
  53.                 "trait": ["Broken"],
  54.                 "label": ["training_obd_break"]
  55.                 },
  56.                 {
  57.                 "id": "Chore",
  58.                 "desc": "Have the girl do various chores to test their obedience.",
  59.                 "reqs": {
  60.                         "trait": ["Broken"]
  61.                         },
  62.                 "mod": {"character": -10},
  63.                 "label": ["training_obd_chore"]
  64.                 }
  65.                 ],
  66.     "rewards": "neg",
  67.     "punishments": "pos",
  68.     "effects": {
  69.                 "joy": "negTill",
  70.                 "joyCheck": { "trait": ["Broken"] },
  71.                 "disposition": "negTill",
  72.                 "dispotionCheck": { "trait": ["Broken"] }
  73.                 }
  74.     }
  75. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement