Advertisement
Guest User

Roguelikedev 2021 item groups

a guest
Aug 14th, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.57 KB | None | 0 0
  1. [
  2.     {
  3.         "id": "scroll",
  4.         "items": [
  5.             {"id": "scroll_lightning", "weight": 20},
  6.             {"id": "scroll_confusion", "weight": 5},
  7.             {"id": "scroll_fireball", "weight": 10},
  8.             {"id": "scroll_town_portal", "weight": 20}
  9.         ]
  10.     },
  11.     {
  12.         "id": "potion",
  13.         "items": [
  14.             {"id": "potion_health", "weight": 30},
  15.             {"id": "potion_mana", "weight": 10}
  16.         ]
  17.     },
  18.     {
  19.         "id": "weapon_tier1",
  20.         "items": [
  21.             {"id": "dagger", "weight": 30},
  22.             {"id": "short_sword", "weight": 10}
  23.         ]
  24.     },
  25.     {
  26.         "id": "weapon_tier2",
  27.         "items": [
  28.             {"id": "short_sword", "weight": 30},
  29.             {"id": "staff", "weight": 10},
  30.             {"group": "weapon_tier1", "weight": 40}
  31.         ]
  32.     },
  33.     {
  34.         "id": "weapon_tier3",
  35.         "items": [
  36.             {"id": "staff", "weight": 30},
  37.             {"id": "flail", "weight": 10},
  38.             {"group": "weapon_tier2", "weight": 40}
  39.         ]
  40.     },
  41.     {
  42.         "id": "weapon_tier4",
  43.         "items": [
  44.             {"id": "flail", "weight": 30},
  45.             {"id": "long_sword", "weight": 10},
  46.             {"group": "weapon_tier3", "weight": 40}
  47.         ]
  48.     },
  49.     {
  50.         "id": "armor_tier1",
  51.         "items": [
  52.             {"id": "leather_armor", "weight": 100},
  53.             {"id": "belt_2slot", "weight": 20},
  54.             {"id": "belt_3slot", "weight": 10},
  55.             {"id": "leather_boots", "weight": 40},
  56.             {"id": "leather_gloves", "weight": 40},
  57.             {"id": "leather_cap", "weight": 40},
  58.             {"id": "round_shield", "weight": 50},
  59.             {"id": "cape", "weight": 30},
  60.             {"id": "pouch_small", "weight": 30}
  61.         ]
  62.     },
  63.     {
  64.         "id": "armor_tier2",
  65.         "items": [
  66.             {"id": "chainmail", "weight": 80},
  67.             {"id": "belt_3slot", "weight": 20},
  68.             {"id": "belt_4slot", "weight": 10},
  69.             {"id": "chain_boots", "weight": 40},
  70.             {"id": "chain_gloves", "weight": 40},
  71.             {"id": "chainmail_hood", "weight": 40},
  72.             {"id": "kite_shield", "weight": 10},
  73.             {"id": "round_shield", "weight": 5},
  74.             {"id": "shoulder_pads", "weight": 30},
  75.             {"id": "pouch_large", "weight": 30},
  76.             {"group": "armor_tier1", "weight": 150}
  77.         ]
  78.     },
  79.     {
  80.         "id": "armor_tier3",
  81.         "items": [
  82.             {"id": "scalemail", "weight": 70},
  83.             {"id": "belt_4slot", "weight": 20},
  84.             {"id": "belt_5slot", "weight": 10},
  85.             {"id": "scale_boots", "weight": 40},
  86.             {"id": "scale_gloves", "weight": 40},
  87.             {"id": "scale_helm", "weight": 40},
  88.             {"id": "kite_shield", "weight": 30},
  89.             {"id": "spaulders", "weight": 30},
  90.             {"id": "pouch_large", "weight": 30},
  91.             {"group": "armor_tier2", "weight": 150}
  92.         ]
  93.     },
  94.     {
  95.         "id": "armor_tier4",
  96.         "items": [
  97.             {"id": "platemail", "weight": 60},
  98.             {"id": "belt_5slot", "weight": 20},
  99.             {"id": "belt_6slot", "weight": 10},
  100.             {"id": "plate_greaves", "weight": 40},
  101.             {"id": "plate_gauntlets", "weight": 40},
  102.             {"id": "full_helm", "weight": 40},
  103.             {"id": "tower_shield", "weight": 30},
  104.             {"id": "round_shield", "weight": 10},
  105.             {"id": "pauldrons", "weight": 30},
  106.             {"id": "pouch_large", "weight": 30},
  107.             {"group": "armor_tier3", "weight": 150}
  108.         ]
  109.     }
  110. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement