Advertisement
Guest User

Roguelikedev 2021 dungeon weights

a guest
Aug 14th, 2021
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.97 KB | None | 0 0
  1. [
  2.     {
  3.         "level": 1,
  4.         "actors": [
  5.             {"id": "orc", "weight": 35},
  6.             {"id": "giant_rat", "weight": 50},
  7.             {"id": "skeleton", "weight": 20},
  8.             {"id": "snake", "weight": 10}
  9.         ],
  10.         "items": [
  11.             {"group": "potion", "weight": 50},
  12.             {"group": "scroll", "weight": 50},
  13.             {"group": "weapon_tier1", "weight": 25},
  14.             {"group": "armor_tier1", "weight": 50}
  15.         ]
  16.     },
  17.     {
  18.         "level": 2,
  19.         "actors": [
  20.             {"id": "orc", "weight": 50},
  21.             {"id": "giant_rat", "weight": 25},
  22.             {"id": "skeleton", "weight": 30},
  23.             {"id": "snake", "weight": 15}
  24.         ],
  25.         "items": [
  26.             {"group": "potion", "weight": 50},
  27.             {"group": "scroll", "weight": 50},
  28.             {"group": "weapon_tier1", "weight": 25},
  29.             {"group": "armor_tier1", "weight": 50}
  30.         ]
  31.     },
  32.     {
  33.         "level": 3,
  34.         "actors": [
  35.             {"id": "orc", "weight": 50},
  36.             {"id": "giant_rat", "weight": 10},
  37.             {"id": "skeleton", "weight": 40},
  38.             {"id": "snake", "weight": 20},
  39.             {"id": "exploding_sheep", "weight": 20},
  40.             {"id": "troll", "weight": 20}
  41.         ],
  42.         "items": [
  43.             {"group": "potion", "weight": 50},
  44.             {"group": "scroll", "weight": 50},
  45.             {"group": "weapon_tier2", "weight": 25},
  46.             {"group": "armor_tier2", "weight": 50}
  47.         ]
  48.     },
  49.     {
  50.         "level": 4,
  51.         "actors": [
  52.             {"id": "orc", "weight": 25},
  53.             {"id": "giant_rat", "weight": 5},
  54.             {"id": "skeleton", "weight": 40},
  55.             {"id": "snake", "weight": 30},
  56.             {"id": "exploding_sheep", "weight": 30},
  57.             {"id": "troll", "weight": 50},
  58.             {"id": "gelatinous_cube", "weight": 5}
  59.         ],
  60.         "items": [
  61.             {"group": "potion", "weight": 50},
  62.             {"group": "scroll", "weight": 50},
  63.             {"group": "weapon_tier2", "weight": 25},
  64.             {"group": "armor_tier2", "weight": 50}
  65.         ]
  66.     },
  67.     {
  68.         "level": 5,
  69.         "actors": [
  70.             {"id": "orc", "weight": 10},
  71.             {"id": "skeleton", "weight": 20},
  72.             {"id": "snake", "weight": 30},
  73.             {"id": "exploding_sheep", "weight": 30},
  74.             {"id": "troll", "weight": 80},
  75.             {"id": "gelatinous_cube", "weight": 10},
  76.             {"id": "giant", "weight": 5}
  77.         ],
  78.         "items": [
  79.             {"group": "potion", "weight": 50},
  80.             {"group": "scroll", "weight": 50},
  81.             {"group": "weapon_tier3", "weight": 25},
  82.             {"group": "armor_tier3", "weight": 50}
  83.         ]
  84.     },
  85.     {
  86.         "level": 6,
  87.         "actors": [
  88.             {"id": "orc", "weight": 10},
  89.             {"id": "skeleton", "weight": 20},
  90.             {"id": "snake", "weight": 30},
  91.             {"id": "exploding_sheep", "weight": 30},
  92.             {"id": "troll", "weight": 60},
  93.             {"id": "gelatinous_cube", "weight": 15},
  94.             {"id": "giant", "weight": 10}
  95.         ],
  96.         "items": [
  97.             {"group": "potion", "weight": 50},
  98.             {"group": "scroll", "weight": 50},
  99.             {"group": "weapon_tier3", "weight": 25},
  100.             {"group": "armor_tier3", "weight": 50}
  101.         ]
  102.     },
  103.     {
  104.         "level": 7,
  105.         "actors": [
  106.             {"id": "orc", "weight": 10},
  107.             {"id": "skeleton", "weight": 20},
  108.             {"id": "snake", "weight": 30},
  109.             {"id": "exploding_sheep", "weight": 30},
  110.             {"id": "troll", "weight": 60},
  111.             {"id": "gelatinous_cube", "weight": 30},
  112.             {"id": "giant", "weight": 20}
  113.         ],
  114.         "items": [
  115.             {"group": "potion", "weight": 50},
  116.             {"group": "scroll", "weight": 50},
  117.             {"group": "weapon_tier4", "weight": 25},
  118.             {"group": "armor_tier4", "weight": 50}
  119.         ]
  120.     }
  121. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement