Advertisement
Vadorequest

TW2 officers

Sep 14th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.70 KB | None | 0 0
  1. {
  2.     "data": {
  3.         "leader": {
  4.             "command_types": ["attack"],
  5.             "abilities": [{
  6.                 "type": "boost_attacking_power",
  7.                 "bonus_percentage": 10
  8.             }]
  9.         },
  10.         "loot_master": {
  11.             "command_types": ["attack"],
  12.             "exclude_unit_types": ["ram", "catapult", "snob"],
  13.             "abilities": [{
  14.                 "type": "boost_carrying_capacity",
  15.                 "bonus_percentage": 50
  16.             }, {
  17.                 "type": "change_movement_speed",
  18.                 "speed": "light_cavalry",
  19.                 "conditions": {
  20.                     "target_barbarian": true
  21.                 }
  22.             }, {
  23.                 "type": "upgrade_barbarian_production",
  24.                 "chance": 0.2
  25.             }]
  26.         },
  27.         "medic": {
  28.             "command_types": ["attack"],
  29.             "abilities": [{
  30.                 "type": "revive_attackers",
  31.                 "percentage": 10
  32.             }]
  33.         },
  34.         "scout": {
  35.             "command_types": ["attack"],
  36.             "abilities": [{
  37.                 "type": "escape_defeat"
  38.             }]
  39.         },
  40.         "supporter": {
  41.             "command_types": ["support"],
  42.             "abilities": [{
  43.                 "type": "change_movement_speed",
  44.                 "speed": "light_cavalry",
  45.                 "conditions": []
  46.             }]
  47.         },
  48.         "bastard": {
  49.             "command_types": ["attack"],
  50.             "abilities": [{
  51.                 "type": "change_movement_speed",
  52.                 "speed": "snob",
  53.                 "conditions": {
  54.                     "target_barbarian": false
  55.                 }
  56.             }]
  57.         }
  58.     }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement