Advertisement
Guest User

Untitled

a guest
Mar 30th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.57 KB | None | 0 0
  1. [
  2.     {
  3.         "type": "technique",
  4.         "id": "beserk_slash",
  5.         "name": "beserk slash",
  6.         "min_melee": 4,
  7.         "mult_bonuses": [
  8.             ["movecost", 1.5],
  9.             ["damage", "bash", 3.0],
  10.             {"damage", "cut", 3,0],
  11.         ],
  12.         "messages": [
  13.             "you slash %s with the burning power of your rage",
  14.             "<npcname> strikes % with the burning power of your rage"
  15.         ]
  16.     },{
  17.         "type": "technique",
  18.         "id": "beserk_sweep",
  19.         "name": "beserk sweep",
  20.         "min_melee": 5,
  21.         "down_dur": 2,
  22.         "messages": [
  23.             "Your strike knocks %s off balance",
  24.             "<npcname>'s strike knocks %s off balance"
  25.         ]
  26.     },{
  27.         "type": "technique"
  28.         "id": "beserk_chance"
  29.         "name": "beserk chance"
  30.         "min_melee": 3,
  31.         "crit_tec": true,
  32.         "mult_bonuses": [
  33.             ["damage", "bash", 2.0],
  34.             ["damage", "cut", 2.0],
  35.         ],
  36.         "messages": [
  37.             "You stun %s after finding an opening in his attack",
  38.             "<npcname> stuns %s after finding an opening in his attack",
  39.         ],
  40.         "stun_dur": 3,
  41.     },{
  42.         "type": "technique",
  43.         "id": "beserk_fury",
  44.         "name": "Beserk Fury",
  45.         "min_melee": 6,
  46.         "req_buffs": [
  47.             "beserk_sweep"
  48.         ],
  49.         "messages": [
  50.             "You strike %s beheading it",
  51.             "<npcname> strikes %s beheading it",
  52.         ],
  53.         "mult_bonuses": [
  54.             ["movecost", 0.5],
  55.             ["damage", "bash", 3.0],
  56.             ["damage", "cut", 3.0],
  57.         "stun_dur": 3,
  58.     },{
  59.         "type": "technique",
  60.         "id": "beserk_feint",
  61.         "name": "Beserk Feint",
  62.         "melee_allowed": true,
  63.         "min_melee": 2,
  64.         "defensive": true,
  65.         "miss_recovery": true,
  66.         "mult_bonuses": [["movecost", 0.5]],
  67.         "messages": [
  68.             "You feint %s",
  69.             "<npcname> feint at %s",
  70.         ]
  71.     }
  72. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement