Advertisement
Guest User

data

a guest
Nov 26th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.04 KB | None | 0 0
  1. "gameEvent": {
  2.     "name": "Упал кирпич",
  3.     "condition": {
  4.         "type": "inLocation",
  5.         "location_name": "dormitory_area"
  6.     },
  7.     "text": "Вот уж ситуация!",
  8.     "decisions": [
  9.         {
  10.             "type": "follow",
  11.             "name": "Уклониться",
  12.             "text": "Вы ловко уклоняетесь",
  13.             "applicability": {
  14.                 "type": "playerStat",
  15.                 "name": "agility",
  16.                 "equality": "greaterThan",
  17.                 "vale": "10"
  18.             },
  19.             "consequence": {
  20.                 "type": "increasePlayerStat",
  21.                 "statName": "luck",
  22.                 "value": "1"
  23.             },
  24.             "followDecisions": [
  25.                 {
  26.                     "type": "last",
  27.                     "name": "Охереть",
  28.                     "text": "Вы просто охерели",
  29.                     "consequence": {
  30.                         "type": "nothing"
  31.                     },
  32.                     "applicability": {
  33.                         "type": "alwaysApplicable"
  34.                     }
  35.                 }
  36.             ]
  37.         },
  38.         {
  39.             "type": "last",
  40.             "name": "Устремить взгляд в небо",
  41.             "text": "Типа все",
  42.             "consequence": {
  43.                 "type": "death"
  44.             },
  45.             "applicability": {
  46.                 "type": "alwaysApplicable"
  47.             }
  48.         }
  49.     ]
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement