mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-07 05:03:31 +02:00
Cleaned up docstrings on monsters.
This commit is contained in:
@@ -10,15 +10,25 @@ from dungeonsheets.stats import Ability
|
||||
|
||||
class YoungBlackDragon(Monster):
|
||||
"""
|
||||
**Amphibious**: The dragon can breathe air and water.
|
||||
Amphibious.
|
||||
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
The dragon can breathe air and water.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.
|
||||
Multiattack.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Acid Breath**: The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.
|
||||
Bite.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
|
||||
Acid Breath.
|
||||
|
||||
The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.
|
||||
"""
|
||||
|
||||
name = "Young Black Dragon"
|
||||
@@ -44,13 +54,21 @@ class YoungBlackDragon(Monster):
|
||||
|
||||
class YoungBlueDragon(Monster):
|
||||
"""
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
Multiattack.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
|
||||
Bite.
|
||||
|
||||
**Lightning Breath**: The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.
|
||||
Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
|
||||
|
||||
Lightning Breath.
|
||||
|
||||
The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.
|
||||
"""
|
||||
|
||||
name = "Young Blue Dragon"
|
||||
@@ -76,13 +94,21 @@ class YoungBlueDragon(Monster):
|
||||
|
||||
class YoungBrassDragon(Monster):
|
||||
"""
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
Multiattack.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
Bite.
|
||||
|
||||
**Breath Weapons**: The dragon uses one of the following breath weapons.
|
||||
Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
|
||||
Breath Weapons.
|
||||
|
||||
The dragon uses one of the following breath weapons.
|
||||
Fire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.
|
||||
Sleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.
|
||||
"""
|
||||
@@ -110,15 +136,25 @@ class YoungBrassDragon(Monster):
|
||||
|
||||
class YoungBronzeDragon(Monster):
|
||||
"""
|
||||
**Amphibious**: The dragon can breathe air and water.
|
||||
Amphibious.
|
||||
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
The dragon can breathe air and water.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.
|
||||
Multiattack.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Breath Weapons**: The dragon uses one of the following breath weapons.
|
||||
Bite.
|
||||
|
||||
Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
|
||||
|
||||
Breath Weapons.
|
||||
|
||||
The dragon uses one of the following breath weapons.
|
||||
Lightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.
|
||||
Repulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.
|
||||
"""
|
||||
@@ -146,13 +182,21 @@ class YoungBronzeDragon(Monster):
|
||||
|
||||
class YoungCopperDragon(Monster):
|
||||
"""
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
Multiattack.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
Bite.
|
||||
|
||||
**Breath Weapons**: The dragon uses one of the following breath weapons.
|
||||
Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
|
||||
Breath Weapons.
|
||||
|
||||
The dragon uses one of the following breath weapons.
|
||||
Acid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.
|
||||
Slowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.
|
||||
"""
|
||||
@@ -180,15 +224,25 @@ class YoungCopperDragon(Monster):
|
||||
|
||||
class YoungGoldDragon(Monster):
|
||||
"""
|
||||
**Amphibious**: The dragon can breathe air and water.
|
||||
Amphibious.
|
||||
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
The dragon can breathe air and water.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
|
||||
Multiattack.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Breath Weapons**: The dragon uses one of the following breath weapons.
|
||||
Bite.
|
||||
|
||||
Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
|
||||
|
||||
Breath Weapons.
|
||||
|
||||
The dragon uses one of the following breath weapons.
|
||||
Fire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.
|
||||
Weakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
|
||||
"""
|
||||
@@ -216,15 +270,25 @@ class YoungGoldDragon(Monster):
|
||||
|
||||
class YoungGreenDragon(Monster):
|
||||
"""
|
||||
**Amphibious**: The dragon can breathe air and water.
|
||||
Amphibious.
|
||||
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
The dragon can breathe air and water.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.
|
||||
Multiattack.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Poison Breath**: The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.
|
||||
Bite.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
|
||||
Poison Breath.
|
||||
|
||||
The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.
|
||||
"""
|
||||
|
||||
name = "Young Green Dragon"
|
||||
@@ -250,13 +314,21 @@ class YoungGreenDragon(Monster):
|
||||
|
||||
class YoungRedDragon(Monster):
|
||||
"""
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
Multiattack.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
|
||||
Bite.
|
||||
|
||||
**Fire Breath**: The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.
|
||||
Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
|
||||
|
||||
Fire Breath.
|
||||
|
||||
The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.
|
||||
"""
|
||||
|
||||
name = "Young Red Dragon"
|
||||
@@ -282,13 +354,21 @@ class YoungRedDragon(Monster):
|
||||
|
||||
class YoungSilverDragon(Monster):
|
||||
"""
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
Multiattack.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
|
||||
Bite.
|
||||
|
||||
**Breath Weapons**: The dragon uses one of the following breath weapons.
|
||||
Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
|
||||
|
||||
Breath Weapons.
|
||||
|
||||
The dragon uses one of the following breath weapons.
|
||||
Cold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.
|
||||
Paralyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
|
||||
"""
|
||||
@@ -316,15 +396,25 @@ class YoungSilverDragon(Monster):
|
||||
|
||||
class YoungWhiteDragon(Monster):
|
||||
"""
|
||||
**Ice Walk**: The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra moment.
|
||||
Ice Walk.
|
||||
|
||||
**Multiattack**: The dragon makes three attacks: one with its bite and two with its claws.
|
||||
The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra moment.
|
||||
|
||||
**Bite**: Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.
|
||||
Multiattack.
|
||||
|
||||
**Claw**: Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
The dragon makes three attacks: one with its bite and two with its claws.
|
||||
|
||||
**Cold Breath**: The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.
|
||||
Bite.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.
|
||||
|
||||
Claw.
|
||||
|
||||
Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
|
||||
|
||||
Cold Breath.
|
||||
|
||||
The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.
|
||||
"""
|
||||
|
||||
name = "Young White Dragon"
|
||||
|
||||
Reference in New Issue
Block a user