mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-26 23:59:59 +02:00
1536 lines
85 KiB
Python
1536 lines
85 KiB
Python
from abc import ABCMeta
|
||
from typing import Sequence
|
||
|
||
from dungeonsheets.content import Content
|
||
from dungeonsheets.content_registry import default_content_registry
|
||
|
||
|
||
default_content_registry.add_module(__name__)
|
||
|
||
|
||
class SubtableFactory(ABCMeta):
|
||
"""Meta class to append subtables to the docstring of a RandomTable..
|
||
|
||
For classes using this metaclass, the *subtables* attribute, if
|
||
present, should be a list of subtables that are to be
|
||
included. For each entry on that list, it will first be resolved
|
||
into a RandomTable class, if appropriate, then its docstring will
|
||
be added to the docstring of the calling class.
|
||
|
||
"""
|
||
def __init__(self, name, bases, attrs):
|
||
# Resolve subtables to RandomTable classes
|
||
for idx, subtable in enumerate(self.subtables):
|
||
TheTable = self._resolve_mechanic(subtable, SuperClass=RandomTable)
|
||
self.subtables[idx] = TheTable
|
||
# Append docstrings for subtables
|
||
docstring = self.__doc__ if self.__doc__ is not None else ""
|
||
for table in self.subtables:
|
||
docstring += f"\n\n**{table.name}**\n\n{table.__doc__}\n"
|
||
self.__doc__ = docstring
|
||
|
||
|
||
class RandomTable(Content, metaclass=SubtableFactory):
|
||
"""A generic table for rolling treasure, monsters, etc.
|
||
|
||
Additional tables can be included by using the *subtables*
|
||
attribute. A use case for this is to create a table for rolling
|
||
random treasure, which may include subtables for gems, art, magic
|
||
items, etc. By including these as subtables, each subtable could
|
||
be included by itself if the verbosity of the full *Treasure*
|
||
table is not needed.
|
||
|
||
Attributes
|
||
==========
|
||
subtables
|
||
A sequence of other random tables that will be included in this
|
||
table.
|
||
|
||
"""
|
||
name = "Generic Random Table"
|
||
subtables: Sequence = []
|
||
|
||
|
||
class ConjureAnimals(RandomTable):
|
||
"""
|
||
+-----+-----------------------------------------------+
|
||
| 1d4 | Number of Beasts |
|
||
+=====+===============================================+
|
||
| 1 | One beast of challenge rating 2 |
|
||
+-----+-----------------------------------------------+
|
||
| 2 | Two beasts of challenge rating 1 |
|
||
+-----+-----------------------------------------------+
|
||
| 3 | Four beasts of challenge rating 1/2 |
|
||
+-----+-----------------------------------------------+
|
||
| 4 | Eight beasts of challenge rating 1/4 or lower |
|
||
+-----+-----------------------------------------------+
|
||
|
||
+-------+---------------------------+
|
||
| 1d20 | CR2 Beasts |
|
||
+=======+===========================+
|
||
| 1-2 | Allosaurus |
|
||
+-------+---------------------------+
|
||
| 3-4 | Giant Boar |
|
||
+-------+---------------------------+
|
||
| 5-6 | Giant Constrictor Snake |
|
||
+-------+---------------------------+
|
||
| 7-8 | Giant Elk |
|
||
+-------+---------------------------+
|
||
| 9-10 | Hunter Shark |
|
||
+-------+---------------------------+
|
||
| 11 | Plesiosaurus |
|
||
+-------+---------------------------+
|
||
| 12-13 | Polar Bear |
|
||
+-------+---------------------------+
|
||
| 14-15 | Rhinoceros |
|
||
+-------+---------------------------+
|
||
| 16-17 | Saber-toothed Tiger |
|
||
+-------+---------------------------+
|
||
| 18-19 | Swarm of Poisonous Snakes |
|
||
+-------+---------------------------+
|
||
| 20 | Roll on CR 1 Beast Table |
|
||
+-------+---------------------------+
|
||
|
||
+------+----------------------------+
|
||
| 1d12 | Challenge Rating 1 Beasts |
|
||
+======+============================+
|
||
| 1 | Brown Bear |
|
||
+------+----------------------------+
|
||
| 2 | Dire Wolf |
|
||
+------+----------------------------+
|
||
| 3 | Fire Snake |
|
||
+------+----------------------------+
|
||
| 4 | Giant Eagle |
|
||
+------+----------------------------+
|
||
| 5 | Giant Hyena |
|
||
+------+----------------------------+
|
||
| 6 | Giant Octopus |
|
||
+------+----------------------------+
|
||
| 7 | Giant Spider |
|
||
+------+----------------------------+
|
||
| 8 | Giant Toad |
|
||
+------+----------------------------+
|
||
| 9 | Giant Vulture |
|
||
+------+----------------------------+
|
||
| 10 | Lion |
|
||
+------+----------------------------+
|
||
| 11 | Tiger |
|
||
+------+----------------------------+
|
||
| 12 | Roll on CR 1/2 Beast Table |
|
||
+------+----------------------------+
|
||
|
||
+-------+---------------------------------+
|
||
| 1d20 | Challenge Rating 1/2 Beasts |
|
||
+=======+=================================+
|
||
| 1-2 | Ape |
|
||
+-------+---------------------------------+
|
||
| 3-4 | Black Bear |
|
||
+-------+---------------------------------+
|
||
| 5-6 | Crocodile |
|
||
+-------+---------------------------------+
|
||
| 7-8 | Giant Goat |
|
||
+-------+---------------------------------+
|
||
| 9-10 | Giant Sea Horse |
|
||
+-------+---------------------------------+
|
||
| 11-12 | Giant Wasp |
|
||
+-------+---------------------------------+
|
||
| 13-14 | Reef Shark |
|
||
+-------+---------------------------------+
|
||
| 15-16 | Swarm of Insects (below) |
|
||
+-------+---------------------------------+
|
||
| 17-18 | Warhorse |
|
||
+-------+---------------------------------+
|
||
| 19 | Worg |
|
||
+-------+---------------------------------+
|
||
| 20 | Roll on Lesser Beast Menu Table |
|
||
+-------+---------------------------------+
|
||
|
||
+-----+------------------+
|
||
| 1d6 | Swarm of Insects |
|
||
+=====+==================+
|
||
| 1 | Ant |
|
||
+-----+------------------+
|
||
| 2 | Beatles |
|
||
+-----+------------------+
|
||
| 3 | Centipedes |
|
||
+-----+------------------+
|
||
| 4 | Locusts |
|
||
+-----+------------------+
|
||
| 5 | Spiders |
|
||
+-----+------------------+
|
||
| 6 | Wasps |
|
||
+-----+------------------+
|
||
|
||
+-----+------------------------------+
|
||
| 1d6 | CR 1/4 and Lesser Beast Menu |
|
||
+=====+==============================+
|
||
| 1-2 | Menu A |
|
||
+-----+------------------------------+
|
||
| 3-4 | Menu B |
|
||
+-----+------------------------------+
|
||
| 5-6 | Menu C |
|
||
+-----+------------------------------+
|
||
|
||
+------+---------------------+
|
||
| 1d20 | Lesser Beast Menu A |
|
||
+======+=====================+
|
||
| 1 | Axe Beak |
|
||
+------+---------------------+
|
||
| 2 | Baboon |
|
||
+------+---------------------+
|
||
| 3 | Badger |
|
||
+------+---------------------+
|
||
| 4 | Bat |
|
||
+------+---------------------+
|
||
| 5 | Blood Hawk |
|
||
+------+---------------------+
|
||
| 6 | Boar |
|
||
+------+---------------------+
|
||
| 7 | Camel |
|
||
+------+---------------------+
|
||
| 8 | Cat |
|
||
+------+---------------------+
|
||
| 9 | Chicken¹ |
|
||
+------+---------------------+
|
||
| 10 | Constrictor Snake |
|
||
+------+---------------------+
|
||
| 11 | Crab |
|
||
+------+---------------------+
|
||
| 12 | Deer |
|
||
+------+---------------------+
|
||
| 13 | Draft Horse |
|
||
+------+---------------------+
|
||
| 14 | Eagle |
|
||
+------+---------------------+
|
||
| 15 | Elk |
|
||
+------+---------------------+
|
||
| 16 | Flying Snake |
|
||
+------+---------------------+
|
||
| 17 | Frog |
|
||
+------+---------------------+
|
||
| 18 | Giant Badger |
|
||
+------+---------------------+
|
||
| 19 | Giant Bat |
|
||
+------+---------------------+
|
||
| 20 | Giant Centipede |
|
||
+------+---------------------+
|
||
|
||
¹Chicken
|
||
Raven stats with Advantage on checks to wake up targets instead
|
||
of mimicry
|
||
|
||
+------+--------------------------+
|
||
| 1d20 | Lesser Beast Menu B |
|
||
+======+==========================+
|
||
| 1 | Giant Crab |
|
||
+------+--------------------------+
|
||
| 2 | Giant Fire Beetle |
|
||
+------+--------------------------+
|
||
| 3 | Giant Frog |
|
||
+------+--------------------------+
|
||
| 4 | Giant Lizard |
|
||
+------+--------------------------+
|
||
| 5 | Giant Owl |
|
||
+------+--------------------------+
|
||
| 6 | Giant Poisonous Snake |
|
||
+------+--------------------------+
|
||
| 7 | Giant Rat |
|
||
+------+--------------------------+
|
||
| 8 | Giant Weasel |
|
||
+------+--------------------------+
|
||
| 9 | Giant Wolf Spider |
|
||
+------+--------------------------+
|
||
| 10 | Goat |
|
||
+------+--------------------------+
|
||
| 11 | Hawk |
|
||
+------+--------------------------+
|
||
| 12 | Hyena |
|
||
+------+--------------------------+
|
||
| 13 | Jackal |
|
||
+------+--------------------------+
|
||
| 14 | Lemur² |
|
||
+------+--------------------------+
|
||
| 15 | Lizard |
|
||
+------+--------------------------+
|
||
| 16 | Mastiff |
|
||
+------+--------------------------+
|
||
| 17 | Mule |
|
||
+------+--------------------------+
|
||
| 18 | Newt³ |
|
||
+------+--------------------------+
|
||
| 19 | Octopus |
|
||
+------+--------------------------+
|
||
| 20 | Octopus, Cascadian Tree⁴ |
|
||
+------+--------------------------+
|
||
|
||
²Lemur
|
||
Weasel stats with a common Climb speed instead of a bite attack
|
||
³Newt
|
||
Lizard stats with Amphibious instead of a bite attack
|
||
⁴Octopus, Cascadian Tree:
|
||
Octopus stats with Amphibious and a 10 ft land speed instead of
|
||
camouflage
|
||
|
||
+------+---------------------+
|
||
| 1d20 | Lesser Beast Menu C |
|
||
+======+=====================+
|
||
| 1 | Owl |
|
||
+------+---------------------+
|
||
| 2 | Panther |
|
||
+------+---------------------+
|
||
| 3 | Poisonous Snake |
|
||
+------+---------------------+
|
||
| 4 | Pony |
|
||
+------+---------------------+
|
||
| 5 | Pteranodon |
|
||
+------+---------------------+
|
||
| 6 | Quipper |
|
||
+------+---------------------+
|
||
| 7 | Rat |
|
||
+------+---------------------+
|
||
| 8 | Raven |
|
||
+------+---------------------+
|
||
| 9 | Riding Horse |
|
||
+------+---------------------+
|
||
| 10 | Scorpion |
|
||
+------+---------------------+
|
||
| 11 | Sea Horse |
|
||
+------+---------------------+
|
||
| 12 | Shocker Lizard⁵ |
|
||
+------+---------------------+
|
||
| 13 | Spider |
|
||
+------+---------------------+
|
||
| 14 | Swarm of Bats |
|
||
+------+---------------------+
|
||
| 15 | Swarm of Rats |
|
||
+------+---------------------+
|
||
| 16 | Swarm of Ravens |
|
||
+------+---------------------+
|
||
| 17 | Turtle⁶ |
|
||
+------+---------------------+
|
||
| 18 | Vulture |
|
||
+------+---------------------+
|
||
| 19 | Weasel |
|
||
+------+---------------------+
|
||
| 20 | Wolf |
|
||
+------+---------------------+
|
||
|
||
⁵Shocker Lizard
|
||
Lizard stats with Static Electricity ranged attack of 1d6
|
||
Electricity damage Close/Medium.
|
||
⁶Turtle
|
||
Lizard stats with 14 natural armor and no climb speed.
|
||
|
||
"""
|
||
# https://the-azure-triskele.obsidianportal.com/wikis/conjure-animals-table
|
||
name = "Conjure Animals"
|
||
|
||
|
||
class IndividualTreasure0To4(RandomTable):
|
||
"""
|
||
+-------+----------+----------+----------+----------+---------+
|
||
| d100 | CP | SP | EP | GP | PP |
|
||
+=======+==========+==========+==========+==========+=========+
|
||
| 01‒30 | 5d6 (17) | – | – | – | – |
|
||
+-------+----------+----------+----------+----------+---------+
|
||
| 31‒60 | – | 4d6 (14) | – | – | – |
|
||
+-------+----------+----------+----------+----------+---------+
|
||
| 61‒70 | – | – | 3d6 (10) | – | – |
|
||
+-------+----------+----------+----------+----------+---------+
|
||
| 71‒95 | – | – | – | 3d6 (10) | – |
|
||
+-------+----------+----------+----------+----------+---------+
|
||
| 96‒00 | – | – | – | – | 1d6 (3) |
|
||
+-------+----------+----------+----------+----------+---------+
|
||
|
||
"""
|
||
name = "Individual Treasure: Challenge 0–4"
|
||
|
||
|
||
class IndividualTreasure5To10(RandomTable):
|
||
"""
|
||
+-------+--------------------+----------------+----------------+----------------+----------+
|
||
| d100 | CP | SP | EP | GP | PP |
|
||
+=======+====================+================+================+================+==========+
|
||
| 01‒30 | 4d6 × 100 (14,000) | – | 1d6 × 100 (35) | – | – |
|
||
+-------+--------------------+----------------+----------------+----------------+----------+
|
||
| 31‒60 | – | 6d6 × 10 (210) | – | 2d6 × 10 (70) | – |
|
||
+-------+--------------------+----------------+----------------+----------------+----------+
|
||
| 61‒70 | – | – | 3d6 × 10 (105) | 2d6 × 10 (70) | – |
|
||
+-------+--------------------+----------------+----------------+----------------+----------+
|
||
| 71‒95 | – | – | – | 4d6 × 10 (140) | – |
|
||
+-------+--------------------+----------------+----------------+----------------+----------+
|
||
| 96‒00 | – | – | – | 2d6 × 10 (70) | 3d6 (10) |
|
||
+-------+--------------------+----------------+----------------+----------------+----------+
|
||
|
||
"""
|
||
name = "Individual Treasure: Challenge 5‒10"
|
||
|
||
|
||
class IndividualTreasure11To16(RandomTable):
|
||
"""
|
||
+-------+----+-------------------+-----------------+-----------------+---------------+
|
||
| d100 | CP | SP | EP | GP | PP |
|
||
+=======+====+===================+=================+=================+===============+
|
||
| 01‒20 | – | 4d6 × 100 (1,400) | – | 1d6 × 100 (350) | – |
|
||
+-------+----+-------------------+-----------------+-----------------+---------------+
|
||
| 21‒35 | – | – | 1d6 × 100 (350) | 1d6 × 100 (350) | – |
|
||
+-------+----+-------------------+-----------------+-----------------+---------------+
|
||
| 36‒75 | – | – | – | 2d6 × 100 (700) | 1d6 × 10 (35) |
|
||
+-------+----+-------------------+-----------------+----------------+----------------+
|
||
| 75‒00 | – | – | – | 2d6 × 100 (700) | 2d6 × 10 (70) |
|
||
+-------+----+-------------------+-----------------+----------------+----------------+
|
||
|
||
"""
|
||
name = "Individual Treasure: Challenge 11‒16"
|
||
|
||
|
||
class IndividualTreasure17Plus(RandomTable):
|
||
"""
|
||
+-------+----+----+---------------------+---------------------+-----------------+
|
||
| d100 | CP | SP | EP | GP | PP |
|
||
+=======+====+====+=====================+=====================+=================+
|
||
| 01‒15 | – | – | 2d6 × 1,000 (7,000) | 8d6 × 100 (2,800) | – |
|
||
+-------+----+----+---------------------+---------------------+-----------------+
|
||
| 16‒55 | – | – | – | 1d6 × 1,000 (3,500) | 1d6 × 100 (350) |
|
||
+-------+----+----+---------------------+---------------------+-----------------+
|
||
| 56‒00 | – | – | – | 1d6 × 1,000 (3,500) | 2d6 × 100 (700) |
|
||
+-------+----+----+---------------------+---------------------+-----------------+
|
||
|
||
"""
|
||
name = "Individual Treasure: Challenge 17+"
|
||
|
||
|
||
class IndividualTreasure(RandomTable):
|
||
""""""
|
||
name = "Individual Treasure"
|
||
subtables = [IndividualTreasure0To4, IndividualTreasure5To10,
|
||
IndividualTreasure11To16, IndividualTreasure17Plus]
|
||
|
||
|
||
class HoardTreasure0To4(RandomTable):
|
||
"""
|
||
+-------+-------------------+-------------------+----+---------------+----+
|
||
| | CP | SP | EP | GP | PP |
|
||
+=======+===================+===================+====+===============+====+
|
||
| Coins | 6d6 × 100 (2,100) | 3d6 × 100 (1,050) | – | 2d6 × 10 (70) | – |
|
||
+-------+-------------------+-------------------+----+---------------+----+
|
||
|
||
+-------+---------------------------+---------------------------------------+
|
||
| d100 | Gems or Art Objects | Magic Items |
|
||
+=======+===========================+=======================================+
|
||
| 01‒06 | – | – |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 07‒16 | 2d6 (7) 10 gp gems | – |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 17‒26 | 2d4 (5) 25 gp art objects | – |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 27‒36 | 2d6 (7) 50 gp gems | – |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 37‒44 | 2d6 (7) 10 gp gems | Roll 1d6 times on Magic Item Table A. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 45‒52 | 2d4 (5) 25 gp art objects | Roll 1d6 times on Magic Item Table A. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 53‒60 | 2d6 (7) 50 gp gems | Roll 1d6 times on Magic Item Table A. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 61‒65 | 2d6 (7) 10 gp gems | Roll 1d4 times on Magic Item Table B. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 66‒70 | 2d4 (5) 25 gp art objects | Roll 1d4 times on Magic Item Table B. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 71‒75 | 2d6 (6) 50 gp gems | Roll 1d4 times on Magic Item Table B. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 76‒78 | 2d6 (7) 10 gp gems | Roll 1d4 times on Magic Item Table C. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 79‒80 | 2d4 (5) 25 gp art objects | Roll 1d4 times on Magic Item Table C. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 81‒85 | 2d6 (7) 50 gp gems | Roll 1d4 times on Magic Item Table C. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 86‒92 | 2d4 (5) 25 gp art objects | Roll 1d4 times on Magic Item Table F. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 93‒97 | 2d6 (7) 50 gp gems | Roll 1d4 times on Magic Item Table F. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 98‒99 | 2d4 (5) 25 gp art objects | Roll once on Magic Item Table G. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
| 00 | 2d6 (7) 50 gp gems | Roll once on Magic Item Table G. |
|
||
+-------+---------------------------+---------------------------------------+
|
||
|
||
"""
|
||
name = "Hoard Treasure: Challenge 0‒4"
|
||
|
||
|
||
class HoardTreasure5To10(RandomTable):
|
||
"""
|
||
+-------+-----------------+---------------------+----+-------------------+---------------+
|
||
| | CP | SP | EP | GP | PP |
|
||
+=======+=================+=====================+====+===================+===============+
|
||
| Coins | 2d6 × 100 (700) | 2d6 × 1,000 (7,000) | – | 6d6 × 100 (2,100) | 3d6 × 10 (105 |
|
||
+-------+-----------------+---------------------+----+-------------------+---------------+
|
||
|
||
+-------+----------------------------+---------------------------------------+
|
||
| d100 | Gems or Art 0bjects | Magic Items |
|
||
+=======+============================+=======================================+
|
||
| 01‒04 | – | – |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 05‒10 | 2d4 (5) 25 gp art objects | – |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 11‒16 | 3d6 (10) 50 gp gems | – |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 17‒22 | 3d6 (10) 100 gp gems | – |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 23‒28 | 2d4 (5) 250 gp art objects | – |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 29‒32 | 2d4 (5) 25 gp art objects | Roll 1d6 times on Magic Item Table A. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 33‒36 | 3d6 (10) 50 gp gems | Roll 1d6 times on Magic Item Table A. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 37‒40 | 3d6 (10) 100 gp gems | Roll 1d6 times on Magic Item Table A. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 41‒44 | 2d4 (5) 250 gp art objects | Roll 1d6 times on Magic Item Table A. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 45‒49 | 2d4 (5) 25 gp art objects | Roll 1d4 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 50‒54 | 3d6 (10) 50 gp gems | Roll 1d4 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 55‒59 | 3d6 (10) 100 gp gems | Roll 1d4 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 60‒63 | 2d4 (5) 250 gp art objects | Roll 1d4 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 64‒66 | 2d4 (5) 25 gp art objects | Roll 1d4 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 67‒69 | 3d6 (10) 50 gp gems | Roll 1d4 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 70‒72 | 3d6 (10) 100 gp gems | Roll 1d4 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 73‒74 | 2d4 (5) 250 gp art objects | Roll 1d4 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 75‒76 | 2d4 (5) 25 gp art objects | Roll once on Magic Item Table D. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 77‒78 | 3d6 (10) 50 gp gems | Roll once on Magic Item Table D. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 79 | 3d6 (10) 100 gp gems | Roll once on Magic I tem Table D. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 80 | 2d4 (5) 250 gp art objects | Roll once on Magic Item Table D. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 81‒84 | 2d4 (5) 25 gp art objects | Roll 1d4 times on Magic Item Table F. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 85‒88 | 3d6 (10) 50 gp gems | Roll 1d4 times on Magic Item Table F. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 89‒91 | 3d6 (10) 100 gp gems | Roll 1d4 times on Magic Item Table F. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 92‒94 | 2d4 (5) 250 gp art objects | Roll 1d4 times on Magic Item Table F. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 95‒96 | 3d6 (10) 100 gp gems | Roll 1d4 times on Magic Item Table G. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 97‒98 | 2d4 (5) 250 gp art objects | Roll 1d4 times on Magic Item Table G. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 99 | 3d6 (10) 100 gp gems | Roll once on Magic Item Table H. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
| 00 | 2d4 (5) 250 gp art objects | Roll once on Magic Item Table H. |
|
||
+-------+----------------------------+---------------------------------------+
|
||
|
||
"""
|
||
name = "Treasure Hoard: Challenge 5‒10"
|
||
|
||
|
||
class HoardTreasure11To16(RandomTable):
|
||
"""
|
||
+-------+----+----+----+-------------------+------------------+
|
||
| | CP | SP | EP | GP | PP |
|
||
+=======+====+====+====+===================+==================+
|
||
| Coins | – | – | – | 4d6 × 1000 (1400) | 5d6 × 100 (1750) |
|
||
+-------+----+----+----+-------------------+------------------+
|
||
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| d100 | Gems or Art Objects | Magic Items |
|
||
+=======+============================+===========================================================================+
|
||
| 01‒03 | – | – |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 04–06 | 2d4 (5) 250 gp art objects | – |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 07–10 | 2d4 (5) 750 gp art objects | – |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 11–12 | 3d6 (10) 500 gp gems | – |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 13–15 | 3d6 (10) 1,000 gp gems | – |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 16–19 | 2d4 (5) 250 gp art objects | Roll 1d4 times on Magic Item Table A and 1d6 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 20–23 | 2d4 (5) 750 gp art objects | Roll 1d4 times on Magic Item Table A and 1d6 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 24–26 | 3d6 (10) 500 gp gems | Roll 1d4 times on Magic Item Table A and 1d6 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 27–29 | 3d6 (10) 1,000 gp gems | Roll 1d4 times on Magic Item Table A and 1d6 times on Magic Item Table B. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 30–35 | 2d4 (5) 250 gp art objects | Roll 1d6 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 36–40 | 2d4 (5) 750 gp art objects | Roll 1d6 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 41–45 | 3d6 (10) 500 gp gems | Roll 1d6 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 46–50 | 3d6 (10) 1,000 gp gems | Roll 1d6 times on Magic Item Table C. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 51–54 | 2d4 (5) 250 gp art objects | Roll 1d4 times on Magic Item Table D |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 55–58 | 2d4 (5) 750 gp art objects | Roll 1d4 times on Magic Item Table D. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 59–62 | 3d6 (10) 500 gp gems | Roll 1d4 times on Magic Item Table D. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 63–66 | 3d6 (10) 1,000 gp gems | Roll 1d4 times on Magic Item Table D. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 67–68 | 2d4 (5) 250 gp art objects | Roll once on Magic Item Table E. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 69–70 | 2d4 (5) 750 gp art objects | Roll once on Magic Item Table E. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 71–72 | 3d6 (10) 500 gp gems | Roll once on Magic Item Table E. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 73–74 | 3d6 (10) 1,000 gp gems | Roll once on Magic Item Table E. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 75–76 | 2d4 (5) 250 gp art objects | Roll once on Magic Item Table F and 1d4 times on Magic Item Table G. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 77–78 | 2d4 (5) 750 gp art objects | Roll once on Magic Item Table F and 1d4 times on Magic Item Table G. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 79–80 | 3d6 (10) 500 gp gems | Roll once on Magic Item Table F and 1d4 times on Magic Item Table G. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 81–82 | 3d6 (1 0) 1,000 gp gems | Roll once on Magic Item Table F and 1d4 times on Magic Item Table G. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 83–85 | 2d4 (5) 250 gp art objects | Roll1d4 times on Magic Item Table H. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 86–88 | 2d4 (5) 750 gp art objects | Roll 1d4 times on Magic Item Table H. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 89–90 | 3d6 (10) 500 gp gems | Roll 1d4 times on Magic Item Table H. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 91–92 | 3d6 (10) 1,000 gp gems | Roll 1d4 times on Magic Item Table H. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 93–94 | 2d4 (5) 250 gp art objects | Roll once on Magic Item Table I. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 95–96 | 3d6 (10) 500 gp gems | Roll once on Magic Item Table I. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 97–98 | 3d6 (10) 1,000 gp gems | Roll once on Magic Item Table I. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
| 99–00 | 3d6 (10) 1,000 gp gems | Roll once on Magic Item Table I. |
|
||
+-------+----------------------------+---------------------------------------------------------------------------+
|
||
|
||
"""
|
||
name = "Treasure Hoard: Challenge 11‒16"
|
||
|
||
|
||
class HoardTreasure17Plus(RandomTable):
|
||
"""
|
||
+-------+----+----+----+---------------------+--------------------+
|
||
| | CP | SP | EP | GP | PP |
|
||
+=======+====+====+====+=====================+====================+
|
||
| Coins | – | – | – | 12d6 X 1000 (42000) | 8d6 x 1000 (28000) |
|
||
+-------+----+----+----+---------------------+--------------------+
|
||
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| d100 | Gems or Art Objects | Magic Items |
|
||
+========+===============================+======================================================================+
|
||
| 01–02 | – | – |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 03–05 | 3d6 (10) 1, 000 gp gems | Roll 1d8 times on Magic Item Table C. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 06–08 | 1d10 (5) 2,500 gp art objects | Roll 1d8 times on Magic Item Table C. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 09–11 | 1d4 (2) 7,500 gp art objects | Roll 1d8 times on Magic Item Table C. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 12–14 | 1d8 (4) 5,000 gp gems | Roll 1d8 times on Magic Item Table C. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 15–22 | 3d6 (10) 1,000 gp gems | Roll 1d6 times on Magic Item Table D. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 23–30 | 1dl0 (5) 2,500 gp art objects | Roll 1d6 times on Magic Item Table D. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 31–38 | 1d4 (2) 7, 500 gp art objects | Roll 1d6 times on Magic Item Table D. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 39–46 | 1d8 (4) 5,000 gp gems | Roll 1d6 times on Magic Item Table D |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 47–52 | 3d6 (10) 1,000 gp gems | Roll 1d6 times on Magic Item Table E. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 53–58 | 1d10 (5) 2,500 gp art objects | Roll1d6 times on Magic Item Table E. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 59–63 | 1d4 (2) 7,500 gp art objects | Roll 1d6 times on Magic Item Table E. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 64–68 | 1d8 (4) 5, 000 gp gems | Roll 1d6 times on Magic Item Table E. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 69 | 3d6 (1 0) 1,000 gp gems | Roll 1d4 times on Magic Item Table G. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 70 | 1d10 (5) 2,500 gp art objects | Roll 1d4 times on Magic Item Table G. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 71 | 1d4 (2) 7,500 gp art objects | Roll1d4 times on Magic Item Table G. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 72 | 1d8 (4) 5,000 gp gems | Roll 1d4 times on Magic Item Table G. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 73–74 | 3d6 (10) 1,000 gp gems | Roll 1d4 times on Magic Item Table H. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 75–76 | ld10 (5) 2,500 gp art objects | Roll 1d4 times on Magic Item Table H. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 77–78 | 1d4 (2) 7,500 gp art objects | Roll 1d4 times on Magic Item Table H. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 79–80 | 1d8 (4) 5,000 gp gems | Roll 1d4 times on Magic Item Table H. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 81–85 | 3d6 (10) 1,000 gp gems | Roll 1d4 times on Magic Item Table I. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 86–90 | 1d10 (5) 2,500 gp art objects | Roll 1d4 times on Magic Item Table I. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 91–95 | ld4 (2) 7,500 gp art objects | Roll once on Magic Item Table F and 1d4 times on Magic Item Table G. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
| 96–100 | 1d8 (4) 5,000 gp gems | Roll 1d4 times on Magic Item Table I. |
|
||
+--------+-------------------------------+----------------------------------------------------------------------+
|
||
|
||
"""
|
||
name = "Treasure Hoard: Challenge 17+"
|
||
|
||
|
||
class MagicItemTableA(RandomTable):
|
||
"""
|
||
+-------+---------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+===========================+
|
||
| 01–50 | Potion of healing |
|
||
+-------+---------------------------+
|
||
| 51–60 | Spell scroll (cantrip) |
|
||
+-------+---------------------------+
|
||
| 61–70 | Potion of climbing |
|
||
+-------+---------------------------+
|
||
| 71–90 | Spell scroll (1st level) |
|
||
+-------+---------------------------+
|
||
| 91–94 | Spell scroll (2nd level) |
|
||
+-------+---------------------------+
|
||
| 95–98 | Potion of greater healing |
|
||
+-------+---------------------------+
|
||
| 99 | Bag of holding |
|
||
+-------+---------------------------+
|
||
| 00 | Driftglobe |
|
||
+-------+---------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table A"
|
||
|
||
|
||
class MagicItemTableB(RandomTable):
|
||
"""
|
||
+-------+---------------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+=================================+
|
||
| 01–15 | Potion of greater healing |
|
||
+-------+---------------------------------+
|
||
| 16–22 | Potion of fire breath |
|
||
+-------+---------------------------------+
|
||
| 23–29 | Potion of resistance |
|
||
+-------+---------------------------------+
|
||
| 30–34 | Ammunition, +1 |
|
||
+-------+---------------------------------+
|
||
| 35–39 | Potion of animal friendship |
|
||
+-------+---------------------------------+
|
||
| 40–44 | Potion of hill giant strength |
|
||
+-------+---------------------------------+
|
||
| 45–49 | Potion of growth |
|
||
+-------+---------------------------------+
|
||
| 50–54 | Potion of water breathing |
|
||
+-------+---------------------------------+
|
||
| 55–59 | Spell scroll (2nd level) |
|
||
+-------+---------------------------------+
|
||
| 60–64 | Spell scroll (3rd level) |
|
||
+-------+---------------------------------+
|
||
| 65–67 | Bag of holding |
|
||
+-------+---------------------------------+
|
||
| 68–70 | Keoghtom's ointment |
|
||
+-------+---------------------------------+
|
||
| 71–73 | Oil of slipperiness |
|
||
+-------+---------------------------------+
|
||
| 74–75 | Dust of disappearance |
|
||
+-------+---------------------------------+
|
||
| 76–77 | Dust of dryness |
|
||
+-------+---------------------------------+
|
||
| 78–79 | Dust of sneezing and choking |
|
||
+-------+---------------------------------+
|
||
| 80–81 | Elemental gem |
|
||
+-------+---------------------------------+
|
||
| 82–83 | Philter of love |
|
||
+-------+---------------------------------+
|
||
| 84 | Alchemy jug |
|
||
+-------+---------------------------------+
|
||
| 85 | Cap of water breathing |
|
||
+-------+---------------------------------+
|
||
| 86 | Cloak of the manta ray |
|
||
+-------+---------------------------------+
|
||
| 87 | Driftglobe |
|
||
+-------+---------------------------------+
|
||
| 88 | Goggles of night |
|
||
+-------+---------------------------------+
|
||
| 89 | Helm of comprehending languages |
|
||
+-------+---------------------------------+
|
||
| 90 | Immovable rod |
|
||
+-------+---------------------------------+
|
||
| 91 | Lantern of revealing |
|
||
+-------+---------------------------------+
|
||
| 92 | Mariner's armor |
|
||
+-------+---------------------------------+
|
||
| 93 | Mithral armor |
|
||
+-------+---------------------------------+
|
||
| 94 | Potion of poison |
|
||
+-------+---------------------------------+
|
||
| 95 | Ring of swimming |
|
||
+-------+---------------------------------+
|
||
| 96 | Robe of useful items |
|
||
+-------+---------------------------------+
|
||
| 97 | Rope of climbing |
|
||
+-------+---------------------------------+
|
||
| 98 | Saddle of the cavalier |
|
||
+-------+---------------------------------+
|
||
| 99 | Wand of magic detection |
|
||
+-------+---------------------------------+
|
||
| 100 | Wand of secrets |
|
||
+-------+---------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table B"
|
||
|
||
|
||
class MagicItemTableC(RandomTable):
|
||
"""
|
||
+-------+--------------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+================================+
|
||
| 01–15 | Potion of superior healing |
|
||
+-------+--------------------------------+
|
||
| 16–22 | Spell scroll (4thlevel) |
|
||
+-------+--------------------------------+
|
||
| 23–27 | Ammunition, +2 |
|
||
+-------+--------------------------------+
|
||
| 28–32 | Potion of clairvoyance |
|
||
+-------+--------------------------------+
|
||
| 33–37 | Potion of diminution |
|
||
+-------+--------------------------------+
|
||
| 38–42 | Potion of gaseous form |
|
||
+-------+--------------------------------+
|
||
| 43–47 | Potion of frost giant strength |
|
||
+-------+--------------------------------+
|
||
| 48–52 | Potion of stone giant strength |
|
||
+-------+--------------------------------+
|
||
| 53–57 | Potion of heroism |
|
||
+-------+--------------------------------+
|
||
| 58–62 | Potion of invulnerability |
|
||
+-------+--------------------------------+
|
||
| 63–67 | Potion of mind reading |
|
||
+-------+--------------------------------+
|
||
| 68–72 | Spell scroll (5thlevel) |
|
||
+-------+--------------------------------+
|
||
| 73–75 | Elixir of health |
|
||
+-------+--------------------------------+
|
||
| 76–78 | Oil of etherealness |
|
||
+-------+--------------------------------+
|
||
| 79–81 | Potion of fire giant strength |
|
||
+-------+--------------------------------+
|
||
| 82–84 | Quaal's feather token |
|
||
+-------+--------------------------------+
|
||
| 85–87 | Scroll of protection |
|
||
+-------+--------------------------------+
|
||
| 88–89 | Bag of beans |
|
||
+-------+--------------------------------+
|
||
| 90-91 | Bead of force |
|
||
+-------+--------------------------------+
|
||
| 92 | Chime of opening |
|
||
+-------+--------------------------------+
|
||
| 93 | Decanter of endless water |
|
||
+-------+--------------------------------+
|
||
| 94 | Eyes of minute seeing |
|
||
+-------+--------------------------------+
|
||
| 95 | Folding boat |
|
||
+-------+--------------------------------+
|
||
| 96 | Heward's handy haversack |
|
||
+-------+--------------------------------+
|
||
| 97 | Horseshoes of speed |
|
||
+-------+--------------------------------+
|
||
| 98 | Necklace of fireballs |
|
||
+-------+--------------------------------+
|
||
| 99 | Periapt of health |
|
||
+-------+--------------------------------+
|
||
| 100 | Sending Stones |
|
||
+-------+--------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table C"
|
||
|
||
|
||
class MagicItemTableD(RandomTable):
|
||
"""
|
||
+-------+--------------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+================================+
|
||
| 01–20 | Potion of supreme healing |
|
||
+-------+--------------------------------+
|
||
| 21–30 | Potion of invisibility |
|
||
+-------+--------------------------------+
|
||
| 31–40 | Potion of speed |
|
||
+-------+--------------------------------+
|
||
| 41–50 | Spell scroll (6thlevel) |
|
||
+-------+--------------------------------+
|
||
| 51–57 | Spell scroll (7thlevel) |
|
||
+-------+--------------------------------+
|
||
| 58–62 | Ammunition, +3 |
|
||
+-------+--------------------------------+
|
||
| 63–67 | Oil of sharpness |
|
||
+-------+--------------------------------+
|
||
| 68–72 | Potion of flying |
|
||
+-------+--------------------------------+
|
||
| 73–77 | Potion of cloud giant strength |
|
||
+-------+--------------------------------+
|
||
| 78–82 | Potion of longevity |
|
||
+-------+--------------------------------+
|
||
| 83–87 | Potion of vitality |
|
||
+-------+--------------------------------+
|
||
| 88–92 | Spell scroll (8thlevel) |
|
||
+-------+--------------------------------+
|
||
| 93–95 | Horseshoes of a zephyr |
|
||
+-------+--------------------------------+
|
||
| 96–98 | Nolzur's marvelous pigments |
|
||
+-------+--------------------------------+
|
||
| 99 | Bag of devouring |
|
||
+-------+--------------------------------+
|
||
| 100 | Portable hole |
|
||
+-------+--------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table D"
|
||
|
||
|
||
class MagicItemTableE(RandomTable):
|
||
"""
|
||
+--------+--------------------------------+
|
||
| d100 | Magic Item |
|
||
+========+================================+
|
||
| 01–30 | Spell scroll (8thlevel) |
|
||
+--------+--------------------------------+
|
||
| 31–55 | Potion of storm giant strength |
|
||
+--------+--------------------------------+
|
||
| 56–70 | Poti on of supreme healing |
|
||
+--------+--------------------------------+
|
||
| 71–85 | Spell scroll (9st level) |
|
||
+--------+--------------------------------+
|
||
| 86–93 | Universal solvent |
|
||
+--------+--------------------------------+
|
||
| 94–98 | Arrow of slaying |
|
||
+--------+--------------------------------+
|
||
| 99-100 | Sovereign glue |
|
||
+--------+--------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table E"
|
||
|
||
|
||
class MagicItemTableF(RandomTable):
|
||
"""
|
||
+-------+------------------------------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+================================================+
|
||
| 01–15 | Weapon, +1 |
|
||
+-------+------------------------------------------------+
|
||
| 16–18 | Shield,+ 1 |
|
||
+-------+------------------------------------------------+
|
||
| 19–21 | Sentinel shield |
|
||
+-------+------------------------------------------------+
|
||
| 22–23 | Amulet of proof against detection and location |
|
||
+-------+------------------------------------------------+
|
||
| 24–25 | Boots of elvenkind |
|
||
+-------+------------------------------------------------+
|
||
| 26–27 | Boots of striding and springing |
|
||
+-------+------------------------------------------------+
|
||
| 27–29 | Bracers of archery |
|
||
+-------+------------------------------------------------+
|
||
| 30–31 | Brooch of shielding |
|
||
+-------+------------------------------------------------+
|
||
| 32–33 | Broom of flying |
|
||
+-------+------------------------------------------------+
|
||
| 34–35 | Cloak of elvenkind |
|
||
+-------+------------------------------------------------+
|
||
| 36–37 | Cloak of protection |
|
||
+-------+------------------------------------------------+
|
||
| 38–39 | Gauntlets of ogre power |
|
||
+-------+------------------------------------------------+
|
||
| 40–41 | Hat of disguise |
|
||
+-------+------------------------------------------------+
|
||
| 42–43 | Javelin of lightning |
|
||
+-------+------------------------------------------------+
|
||
| 44–45 | Pearl of power |
|
||
+-------+------------------------------------------------+
|
||
| 46–47 | Rod of the pact keeper, + 1 |
|
||
+-------+------------------------------------------------+
|
||
| 48–49 | Slippers of spider climbing |
|
||
+-------+------------------------------------------------+
|
||
| 50–51 | Staff of the adder |
|
||
+-------+------------------------------------------------+
|
||
| 52-53 | Staff of the python |
|
||
+-------+------------------------------------------------+
|
||
| 54-55 | Sword of vengeance |
|
||
+-------+------------------------------------------------+
|
||
| 56–57 | Trident of fish command |
|
||
+-------+------------------------------------------------+
|
||
| 58–59 | Wand of magic missiles |
|
||
+-------+------------------------------------------------+
|
||
| 60–61 | Wand of the war mage, + 1 |
|
||
+-------+------------------------------------------------+
|
||
| 62–63 | Wand of web |
|
||
+-------+------------------------------------------------+
|
||
| 64-65 | Weapon of warning |
|
||
+-------+------------------------------------------------+
|
||
| 66 | Adamantine armor (chain mail) |
|
||
+-------+------------------------------------------------+
|
||
| 67 | Adamantine armor (chain shirt) |
|
||
+-------+------------------------------------------------+
|
||
| 68 | Adamantine armor (scale mail) |
|
||
+-------+------------------------------------------------+
|
||
| 69 | Bag of tricks (gray) |
|
||
+-------+------------------------------------------------+
|
||
| 70 | Bag of tricks (rust) |
|
||
+-------+------------------------------------------------+
|
||
| 71 | Bag of tricks (tan) |
|
||
+-------+------------------------------------------------+
|
||
| 72 | Boots of the winterlands |
|
||
+-------+------------------------------------------------+
|
||
| 73 | Circlet of blasting |
|
||
+-------+------------------------------------------------+
|
||
| 74 | Deck of illusions |
|
||
+-------+------------------------------------------------+
|
||
| 75 | Eversmoking bottle |
|
||
+-------+------------------------------------------------+
|
||
| 76 | Eyes of charming |
|
||
+-------+------------------------------------------------+
|
||
| 77 | Eyes of the eagle |
|
||
+-------+------------------------------------------------+
|
||
| 78 | Figurine of wondrous power (silver raven) |
|
||
+-------+------------------------------------------------+
|
||
| 79 | Gem of brightness |
|
||
+-------+------------------------------------------------+
|
||
| 80 | Gloves of missile snaring |
|
||
+-------+------------------------------------------------+
|
||
| 81 | Gloves of swimming and climbing |
|
||
+-------+------------------------------------------------+
|
||
| 82 | Gloves of thievery |
|
||
+-------+------------------------------------------------+
|
||
| 83 | Headband of intellect |
|
||
+-------+------------------------------------------------+
|
||
| 84 | Helm of telepathy |
|
||
+-------+------------------------------------------------+
|
||
| 85 | Instrument of the bards (Doss lute) |
|
||
+-------+------------------------------------------------+
|
||
| 86 | Instrument of the bards (Fochlucan bandore) |
|
||
+-------+------------------------------------------------+
|
||
| 87 | Instrument of the bards (Mac-Fuimidh cittern) |
|
||
+-------+------------------------------------------------+
|
||
| 88 | Medallion of thoughts |
|
||
+-------+------------------------------------------------+
|
||
| 89 | Necklace of adaptation |
|
||
+-------+------------------------------------------------+
|
||
| 90 | Periapt of wound closure |
|
||
+-------+------------------------------------------------+
|
||
| 91 | Pipes of haunting |
|
||
+-------+------------------------------------------------+
|
||
| 92 | Pipes of the sewers |
|
||
+-------+------------------------------------------------+
|
||
| 93 | Ring of jumping |
|
||
+-------+------------------------------------------------+
|
||
| 94 | Ring of mind shielding |
|
||
+-------+------------------------------------------------+
|
||
| 95 | Ring of warmth |
|
||
+-------+------------------------------------------------+
|
||
| 96 | Ring of water walking |
|
||
+-------+------------------------------------------------+
|
||
| 97 | Quiver of Ehlonna |
|
||
+-------+------------------------------------------------+
|
||
| 98 | Stone of good luck |
|
||
+-------+------------------------------------------------+
|
||
| 99 | Wind fan |
|
||
+-------+------------------------------------------------+
|
||
| 100 | Winged boots |
|
||
+-------+------------------------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table F"
|
||
|
||
|
||
class MagicItemTableG(RandomTable):
|
||
""""
|
||
+-------+-------------------------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+===========================================+
|
||
| 01–11 | Weapon, +2 |
|
||
+-------+-------------------------------------------+
|
||
| 12–14 | Figurine of wondrous power (roll d8) |
|
||
+-------+-------------------------------------------+
|
||
| - | 1: Bronze griffon |
|
||
+-------+-------------------------------------------+
|
||
| - | 2: Ebony fly |
|
||
+-------+-------------------------------------------+
|
||
| - | 3: Golden lions |
|
||
+-------+-------------------------------------------+
|
||
| - | 4: Ivory goats |
|
||
+-------+-------------------------------------------+
|
||
| - | 5: Marble elephant |
|
||
+-------+-------------------------------------------+
|
||
| - | 6-7: Onyx dog |
|
||
+-------+-------------------------------------------+
|
||
| - | 8: Serpentine owl |
|
||
+-------+-------------------------------------------+
|
||
| 15 | Adamantine armor (breastplate) |
|
||
+-------+-------------------------------------------+
|
||
| 16 | Adamantine armor (splint) |
|
||
+-------+-------------------------------------------+
|
||
| 17 | Amulet of health |
|
||
+-------+-------------------------------------------+
|
||
| 18 | Armor of vulnerability |
|
||
+-------+-------------------------------------------+
|
||
| 19 | Arrow-catching shield |
|
||
+-------+-------------------------------------------+
|
||
| 20 | Belt of dwarvenkind |
|
||
+-------+-------------------------------------------+
|
||
| 21 | Belt of hill giant strength |
|
||
+-------+-------------------------------------------+
|
||
| 22 | Berserker axe |
|
||
+-------+-------------------------------------------+
|
||
| 23 | Boots of levitation |
|
||
+-------+-------------------------------------------+
|
||
| 24 | Boots of speed |
|
||
+-------+-------------------------------------------+
|
||
| 25 | Bowl of commanding water elementals |
|
||
+-------+-------------------------------------------+
|
||
| 26 | Bracers of defense |
|
||
+-------+-------------------------------------------+
|
||
| 27 | Brazier of commanding fire elementals |
|
||
+-------+-------------------------------------------+
|
||
| 28 | Cape of the mountebank |
|
||
+-------+-------------------------------------------+
|
||
| 29 | Censer of controlling air elementals |
|
||
+-------+-------------------------------------------+
|
||
| 30 | Armor, +1 chain mail |
|
||
+-------+-------------------------------------------+
|
||
| 31 | Armor of resistance (chain mail) |
|
||
+-------+-------------------------------------------+
|
||
| 32 | Armor of resistance (chain shirt) |
|
||
+-------+-------------------------------------------+
|
||
| 33 | Armor,+ 1 chain shirt |
|
||
+-------+-------------------------------------------+
|
||
| 34 | Cloak of displacement |
|
||
+-------+-------------------------------------------+
|
||
| 35 | Cloak of the bat |
|
||
+-------+-------------------------------------------+
|
||
| 36 | Cube of force |
|
||
+-------+-------------------------------------------+
|
||
| 37 | Daern's instant fortress |
|
||
+-------+-------------------------------------------+
|
||
| 38 | Dagger of venom |
|
||
+-------+-------------------------------------------+
|
||
| 39 | Dimensional shackles |
|
||
+-------+-------------------------------------------+
|
||
| 40 | Dragon slayer |
|
||
+-------+-------------------------------------------+
|
||
| 41 | Elven chain |
|
||
+-------+-------------------------------------------+
|
||
| 42 | Flame tongue |
|
||
+-------+-------------------------------------------+
|
||
| 43 | Gem of seeing |
|
||
+-------+-------------------------------------------+
|
||
| 44 | Giant slayer |
|
||
+-------+-------------------------------------------+
|
||
| 45 | Clamoured studded leather |
|
||
+-------+-------------------------------------------+
|
||
| 46 | Helm of teleportation |
|
||
+-------+-------------------------------------------+
|
||
| 47 | Horn of blasting |
|
||
+-------+-------------------------------------------+
|
||
| 48 | Horn of Valhalla (silver or brass) |
|
||
+-------+-------------------------------------------+
|
||
| 49 | Instrument of the bards (Canaithmandolin) |
|
||
+-------+-------------------------------------------+
|
||
| 50 | Instrument ofthe bards (Cii lyre) |
|
||
+-------+-------------------------------------------+
|
||
| 51 | loun stone (awareness) |
|
||
+-------+-------------------------------------------+
|
||
| 52 | loun stone (protection) |
|
||
+-------+-------------------------------------------+
|
||
| 53 | loun stone (reserve) |
|
||
+-------+-------------------------------------------+
|
||
| 54 | loun stone (sustenance) |
|
||
+-------+-------------------------------------------+
|
||
| 55 | Iron bands of Bilarro |
|
||
+-------+-------------------------------------------+
|
||
| 56 | Armor, + 1 leather |
|
||
+-------+-------------------------------------------+
|
||
| 57 | Armor of resistance (leather) |
|
||
+-------+-------------------------------------------+
|
||
| 58 | Mace of disruption |
|
||
+-------+-------------------------------------------+
|
||
| 59 | Mace of smiting |
|
||
+-------+-------------------------------------------+
|
||
| 60 | Mace of terror |
|
||
+-------+-------------------------------------------+
|
||
| 61 | Mantle of spell resistance |
|
||
+-------+-------------------------------------------+
|
||
| 62 | Necklace of prayer beads |
|
||
+-------+-------------------------------------------+
|
||
| 63 | Periapt of proof against poison |
|
||
+-------+-------------------------------------------+
|
||
| 64 | Ring of animal influence |
|
||
+-------+-------------------------------------------+
|
||
| 65 | Ring of evasion |
|
||
+-------+-------------------------------------------+
|
||
| 66 | Ring of feather falling |
|
||
+-------+-------------------------------------------+
|
||
| 67 | Ring of free action |
|
||
+-------+-------------------------------------------+
|
||
| 68 | Ring of protection |
|
||
+-------+-------------------------------------------+
|
||
| 69 | Ring of resistance |
|
||
+-------+-------------------------------------------+
|
||
| 70 | Ring of spell storing |
|
||
+-------+-------------------------------------------+
|
||
| 71 | Ring of the ram |
|
||
+-------+-------------------------------------------+
|
||
| 72 | Ring of X-ray vision |
|
||
+-------+-------------------------------------------+
|
||
| 73 | Robe of eyes |
|
||
+-------+-------------------------------------------+
|
||
| 74 | Rod of rulership |
|
||
+-------+-------------------------------------------+
|
||
| 75 | Rod of the pact keeper, +2 |
|
||
+-------+-------------------------------------------+
|
||
| 76 | Rope of entanglement |
|
||
+-------+-------------------------------------------+
|
||
| 77 | Armor, +1 scale mail |
|
||
+-------+-------------------------------------------+
|
||
| 78 | Armor of resistance (scale mail) |
|
||
+-------+-------------------------------------------+
|
||
| 79 | Shield, +2 |
|
||
+-------+-------------------------------------------+
|
||
| 80 | Shield of missile attraction |
|
||
+-------+-------------------------------------------+
|
||
| 81 | Staff of charming |
|
||
+-------+-------------------------------------------+
|
||
| 82 | Staff of healing |
|
||
+-------+-------------------------------------------+
|
||
| 83 | Staff of swarming insects |
|
||
+-------+-------------------------------------------+
|
||
| 84 | Staff of the woodlands |
|
||
+-------+-------------------------------------------+
|
||
| 85 | Staff of withering |
|
||
+-------+-------------------------------------------+
|
||
| 86 | Stone of controlling earthelementals |
|
||
+-------+-------------------------------------------+
|
||
| 87 | Sun blade |
|
||
+-------+-------------------------------------------+
|
||
| 88 | Sword of life stealing |
|
||
+-------+-------------------------------------------+
|
||
| 89 | Sword of wounding |
|
||
+-------+-------------------------------------------+
|
||
| 90 | Tentacle rod |
|
||
+-------+-------------------------------------------+
|
||
| 91 | Vicious weapon |
|
||
+-------+-------------------------------------------+
|
||
| 92 | Wand of binding |
|
||
+-------+-------------------------------------------+
|
||
| 93 | Wand of enemy detection |
|
||
+-------+-------------------------------------------+
|
||
| 94 | Wand of fear |
|
||
+-------+-------------------------------------------+
|
||
| 95 | Wand of fireballs |
|
||
+-------+-------------------------------------------+
|
||
| 96 | Wand of lightning bolts |
|
||
+-------+-------------------------------------------+
|
||
| 97 | Wand of paralysis |
|
||
+-------+-------------------------------------------+
|
||
| 98 | Wand of the war mage, +2 |
|
||
+-------+-------------------------------------------+
|
||
| 99 | Wand of wonder |
|
||
+-------+-------------------------------------------+
|
||
| 100 | Wings of flying |
|
||
+-------+-------------------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table G"
|
||
|
||
|
||
class MagicItemTableH(RandomTable):
|
||
"""
|
||
+-------+---------------------------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+=============================================+
|
||
| 01–10 | Weapon, +3 |
|
||
+-------+---------------------------------------------+
|
||
| 11–12 | Amulet of the planes |
|
||
+-------+---------------------------------------------+
|
||
| 13–14 | Carpet of flying |
|
||
+-------+---------------------------------------------+
|
||
| 15–16 | Crystal ball (very rare version) |
|
||
+-------+---------------------------------------------+
|
||
| 17–18 | Ring of regeneration |
|
||
+-------+---------------------------------------------+
|
||
| 19–20 | Ring of shooting stars |
|
||
+-------+---------------------------------------------+
|
||
| 21–22 | Ring of telekinesis |
|
||
+-------+---------------------------------------------+
|
||
| 23–24 | Robe of scintillating colors |
|
||
+-------+---------------------------------------------+
|
||
| 25–26 | Robe of stars |
|
||
+-------+---------------------------------------------+
|
||
| 27–28 | Rod of absorption |
|
||
+-------+---------------------------------------------+
|
||
| 29–30 | Rod of alertness |
|
||
+-------+---------------------------------------------+
|
||
| 31–32 | Rod of security |
|
||
+-------+---------------------------------------------+
|
||
| 33–34 | Rod of the pact keeper, +3 |
|
||
+-------+---------------------------------------------+
|
||
| 35–36 | Scimitar of speed |
|
||
+-------+---------------------------------------------+
|
||
| 37–38 | Shield, +3 |
|
||
+-------+---------------------------------------------+
|
||
| 39–40 | Staff of fire |
|
||
+-------+---------------------------------------------+
|
||
| 41–42 | Staff of frost |
|
||
+-------+---------------------------------------------+
|
||
| 43–44 | Staff of power |
|
||
+-------+---------------------------------------------+
|
||
| 45-46 | Staff of striking |
|
||
+-------+---------------------------------------------+
|
||
| 47-48 | Staff of thunder and lightning |
|
||
+-------+---------------------------------------------+
|
||
| 49–50 | Sword of sharpnes |
|
||
+-------+---------------------------------------------+
|
||
| 51–52 | Wand of polymorph |
|
||
+-------+---------------------------------------------+
|
||
| 53–54 | Wand of the war mage, + 3 |
|
||
+-------+---------------------------------------------+
|
||
| 55 | Adamantine armor (half plate) |
|
||
+-------+---------------------------------------------+
|
||
| 56 | Adamantine armor (plate) |
|
||
+-------+---------------------------------------------+
|
||
| 57 | Animated shield |
|
||
+-------+---------------------------------------------+
|
||
| 58 | Belt of fire giant strength |
|
||
+-------+---------------------------------------------+
|
||
| 59 | Belt of frost (or stone) giant strength |
|
||
+-------+---------------------------------------------+
|
||
| 60 | Armor, + 1 breastplate |
|
||
+-------+---------------------------------------------+
|
||
| 61 | Armor of resistance (breastplate) |
|
||
+-------+---------------------------------------------+
|
||
| 62 | Candle of invocation |
|
||
+-------+---------------------------------------------+
|
||
| 63 | Armor, +2 chain mail |
|
||
+-------+---------------------------------------------+
|
||
| 64 | Armor, +2 chain shirt |
|
||
+-------+---------------------------------------------+
|
||
| 65 | Cloak of arachnida |
|
||
+-------+---------------------------------------------+
|
||
| 66 | Dancing sword |
|
||
+-------+---------------------------------------------+
|
||
| 67 | Demon armor |
|
||
+-------+---------------------------------------------+
|
||
| 68 | Dragon scale mail |
|
||
+-------+---------------------------------------------+
|
||
| 69 | Dwarven plate |
|
||
+-------+---------------------------------------------+
|
||
| 70 | Dwarven thrower |
|
||
+-------+---------------------------------------------+
|
||
| 71 | Efreeti bottle |
|
||
+-------+---------------------------------------------+
|
||
| 72 | Figurine of wondrous power (obsidian steed) |
|
||
+-------+---------------------------------------------+
|
||
| 73 | Frost brand |
|
||
+-------+---------------------------------------------+
|
||
| 74 | Helm of brilliance |
|
||
+-------+---------------------------------------------+
|
||
| 75 | Horn ofValhalla (bronze) |
|
||
+-------+---------------------------------------------+
|
||
| 76 | Instrument of the bards (Anstruthharp) |
|
||
+-------+---------------------------------------------+
|
||
| 77 | loun stone (absorption) |
|
||
+-------+---------------------------------------------+
|
||
| 78 | loun stone (agility) |
|
||
+-------+---------------------------------------------+
|
||
| 79 | loun stone (fortitude) |
|
||
+-------+---------------------------------------------+
|
||
| 80 | loun stone (insight) |
|
||
+-------+---------------------------------------------+
|
||
| 81 | loun stone (intellect) |
|
||
+-------+---------------------------------------------+
|
||
| 82 | loun stone (leadership) |
|
||
+-------+---------------------------------------------+
|
||
| 83 | loun stone (strength) |
|
||
+-------+---------------------------------------------+
|
||
| 84 | Armor, +2 leather |
|
||
+-------+---------------------------------------------+
|
||
| 85 | Manual of bodily health |
|
||
+-------+---------------------------------------------+
|
||
| 86 | Manual of gainful exercise |
|
||
+-------+---------------------------------------------+
|
||
| 87 | Manual of golems |
|
||
+-------+---------------------------------------------+
|
||
| 88 | Manual of quickness of action |
|
||
+-------+---------------------------------------------+
|
||
| 89 | Mirror of life trapping |
|
||
+-------+---------------------------------------------+
|
||
| 90 | Nine lives stealer |
|
||
+-------+---------------------------------------------+
|
||
| 91 | Oathbow |
|
||
+-------+---------------------------------------------+
|
||
| 92 | Armor, +2 scale mail |
|
||
+-------+---------------------------------------------+
|
||
| 93 | Spellguard shield |
|
||
+-------+---------------------------------------------+
|
||
| 94 | Armor, + 1 splint |
|
||
+-------+---------------------------------------------+
|
||
| 95 | Armor of resistance (splint) |
|
||
+-------+---------------------------------------------+
|
||
| 96 | Armor, + 1 studded leather |
|
||
+-------+---------------------------------------------+
|
||
| 97 | Armor of resistance (studded leather) |
|
||
+-------+---------------------------------------------+
|
||
| 98 | Tome of clear thought |
|
||
+-------+---------------------------------------------+
|
||
| 99 | Tome of leadership and influence |
|
||
+-------+---------------------------------------------+
|
||
| 100 | Tome of understanding |
|
||
+-------+---------------------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table H"
|
||
|
||
|
||
class MagicItemTableI(RandomTable):
|
||
"""
|
||
+-------+---------------------------------------+
|
||
| d100 | Magic Item |
|
||
+=======+=======================================+
|
||
| 01–05 | Defender |
|
||
+-------+---------------------------------------+
|
||
| 06–10 | Hammer of thunderbolts |
|
||
+-------+---------------------------------------+
|
||
| 11–15 | Luck Blade |
|
||
+-------+---------------------------------------+
|
||
| 16–20 | Sword of answering |
|
||
+-------+---------------------------------------+
|
||
| 21–23 | Holy avenger |
|
||
+-------+---------------------------------------+
|
||
| 24–26 | Ring of djinni summoning |
|
||
+-------+---------------------------------------+
|
||
| 27–29 | Ring of invisibility |
|
||
+-------+---------------------------------------+
|
||
| 30–32 | Ring of spell turning |
|
||
+-------+---------------------------------------+
|
||
| 36–38 | Rod of lordly might |
|
||
+-------+---------------------------------------+
|
||
| 39–41 | Vorpal sword |
|
||
+-------+---------------------------------------+
|
||
| 42–43 | Belt of cloud giant strength |
|
||
+-------+---------------------------------------+
|
||
| 44–45 | Armor, +2 breastplate |
|
||
+-------+---------------------------------------+
|
||
| 46–47 | Armor, +3 chain mail |
|
||
+-------+---------------------------------------+
|
||
| 48–49 | Armor, +3 chain shirt |
|
||
+-------+---------------------------------------+
|
||
| 50–51 | Cloak of invisibility |
|
||
+-------+---------------------------------------+
|
||
| 52–53 | Crystal ball (legendary version) |
|
||
+-------+---------------------------------------+
|
||
| 54-55 | Armor, + 1 half plate |
|
||
+-------+---------------------------------------+
|
||
| 56-57 | Iron flask |
|
||
+-------+---------------------------------------+
|
||
| 58-59 | Armor, +3 leather |
|
||
+-------+---------------------------------------+
|
||
| 60-61 | Armor, +1 plate |
|
||
+-------+---------------------------------------+
|
||
| 62-63 | Robe of the archmagi |
|
||
+-------+---------------------------------------+
|
||
| 64-65 | Rod of resurrection |
|
||
+-------+---------------------------------------+
|
||
| 66-67 | Armor, +1 scale mail |
|
||
+-------+---------------------------------------+
|
||
| 68-69 | Scarab of protection |
|
||
+-------+---------------------------------------+
|
||
| 70-71 | Armor, +2 splint |
|
||
+-------+---------------------------------------+
|
||
| 72-73 | Armor, +2 studded leather |
|
||
+-------+---------------------------------------+
|
||
| 74-75 | Well of many worlds |
|
||
+-------+---------------------------------------+
|
||
| 76 | Magic armor (roll dl2) |
|
||
+-------+---------------------------------------+
|
||
| - | 1-2: Armor, +2 half plate |
|
||
+-------+---------------------------------------+
|
||
| - | 3-4: Armor, +2 plate |
|
||
+-------+---------------------------------------+
|
||
| - | 5-6: Armor, +3 studded leather |
|
||
+-------+---------------------------------------+
|
||
| - | 7-8: Armor, +3 breastplate |
|
||
+-------+---------------------------------------+
|
||
| - | 9-10: Armor, +3 splint |
|
||
+-------+---------------------------------------+
|
||
| - | 11: Armor, +3 half plate |
|
||
+-------+---------------------------------------+
|
||
| - | 12: Armor, +3 plate |
|
||
+-------+---------------------------------------+
|
||
| 77 | Apparatus of Kwalish |
|
||
+-------+---------------------------------------+
|
||
| 78 | Armor of invulnerability |
|
||
+-------+---------------------------------------+
|
||
| 79 | Belt of storm giant strength |
|
||
+-------+---------------------------------------+
|
||
| 80 | Cubic gate |
|
||
+-------+---------------------------------------+
|
||
| 81 | Deck of many things |
|
||
+-------+---------------------------------------+
|
||
| 82 | Efreeti chain |
|
||
+-------+---------------------------------------+
|
||
| 83 | Armor of resistance (half plate) |
|
||
+-------+---------------------------------------+
|
||
| 84 | Horn ofValhalla (iron) |
|
||
+-------+---------------------------------------+
|
||
| 85 | Instrument of the bards (OIIamh harp) |
|
||
+-------+---------------------------------------+
|
||
| 86 | loun stone (greater absorption) |
|
||
+-------+---------------------------------------+
|
||
| 87 | loun stone (mastery) |
|
||
+-------+---------------------------------------+
|
||
| 88 | loun stone (regeneration) |
|
||
+-------+---------------------------------------+
|
||
| 89 | Plate armor of etherealness |
|
||
+-------+---------------------------------------+
|
||
| 90 | Plate armor of resistance |
|
||
+-------+---------------------------------------+
|
||
| 91 | Ring of air elemental command |
|
||
+-------+---------------------------------------+
|
||
| 92 | Ring of earthelemental command |
|
||
+-------+---------------------------------------+
|
||
| 93 | Ring of fire elemental command |
|
||
+-------+---------------------------------------+
|
||
| 94 | Ring of three wishes |
|
||
+-------+---------------------------------------+
|
||
| 95 | Ring of water elemental command |
|
||
+-------+---------------------------------------+
|
||
| 96 | Sphere of annihilation |
|
||
+-------+---------------------------------------+
|
||
| 97 | Talisman of pure good |
|
||
+-------+---------------------------------------+
|
||
| 98 | Talisman of the sphere |
|
||
+-------+---------------------------------------+
|
||
| 99 | Talisman of ultimate evil |
|
||
+-------+---------------------------------------+
|
||
| 100 | Tome of the stilled tongue |
|
||
+-------+---------------------------------------+
|
||
|
||
"""
|
||
name = "Magic Item Table I"
|
||
|
||
|
||
class Treasure(RandomTable):
|
||
""""""
|
||
name = "Treasure"
|
||
subtables = [IndividualTreasure0To4, IndividualTreasure5To10,
|
||
IndividualTreasure11To16, IndividualTreasure17Plus,
|
||
HoardTreasure0To4, HoardTreasure5To10,
|
||
HoardTreasure11To16, HoardTreasure17Plus,
|
||
MagicItemTableA, MagicItemTableB, MagicItemTableC,
|
||
MagicItemTableD, MagicItemTableE, MagicItemTableF,
|
||
MagicItemTableG, MagicItemTableH, MagicItemTableI]
|