fix issue #28; add extra weapon traits like thrown 10 ft.

merge-requests/29/head
James Miller 2019-08-11 13:47:32 -05:00
parent 08b3c87ccd
commit 0240b34b23
1 changed files with 17 additions and 2 deletions

View File

@ -3,7 +3,7 @@
-- ######################################################### -- #########################################################
-- This space is where we say the latest ID for incrementing -- This space is where we say the latest ID for incrementing
-- --
-- 254 is top ID right now so start with 255 for anything new -- 269 is top ID right now so start with 270 for anything new
-- --
-- ######################################################### -- #########################################################
@ -311,4 +311,19 @@ INSERT INTO traits (trait_id, traittype, short_name,description)
(248, 15, "Two-Hand", "This weapon can be wielded with two hands. Doing so changes its weapon damage die to the indicated value. This change applies to all the weapons damage dice, such as those from "), (248, 15, "Two-Hand", "This weapon can be wielded with two hands. Doing so changes its weapon damage die to the indicated value. This change applies to all the weapons damage dice, such as those from "),
(249, 15, "Unarmed", "An unarmed attack uses your body rather than a manufactured weapon. An unarmed attack isnt a weapon, though its categorized with weapons for weapon groups, and it might have weapon traits. Since its part of your body, an unarmed attack cant be Disarmed. It also doesnt take up a hand, though a fist or other grasping appendage follows the same rules as a free-hand weapon."), (249, 15, "Unarmed", "An unarmed attack uses your body rather than a manufactured weapon. An unarmed attack isnt a weapon, though its categorized with weapons for weapon groups, and it might have weapon traits. Since its part of your body, an unarmed attack cant be Disarmed. It also doesnt take up a hand, though a fist or other grasping appendage follows the same rules as a free-hand weapon."),
(250, 15, "Versatile", "A versatile weapon can be used to deal a different type of damage than that listed in the Damage entry. This trait indicates the alternate damage type. For instance, a piercing weapon that is versatile S can be used to deal piercing or slashing damage. You choose the damage type each time you make an attack."), (250, 15, "Versatile", "A versatile weapon can be used to deal a different type of damage than that listed in the Damage entry. This trait indicates the alternate damage type. For instance, a piercing weapon that is versatile S can be used to deal piercing or slashing damage. You choose the damage type each time you make an attack."),
(251, 15, "Volley", "This ranged weapon is less effective at close distances. Your attacks against targets that are at a distance within the range listed take a 2 penalty."); (251, 15, "Volley", "This ranged weapon is less effective at close distances. Your attacks against targets that are at a distance within the range listed take a 2 penalty."),
(255, 15, "Thrown 10ft.", "You can throw this weapon as a ranged attack. A thrown weapon adds your Strength modifier to damage just like a melee weapon does. When this trait appears on a melee weapon, it also includes the range increment. Ranged weapons with this trait use the range increment specified in the weapons Range entry."),
(256, 15, "Thrown 20ft.", "You can throw this weapon as a ranged attack. A thrown weapon adds your Strength modifier to damage just like a melee weapon does. When this trait appears on a melee weapon, it also includes the range increment. Ranged weapons with this trait use the range increment specified in the weapons Range entry."),
(257, 15, "Deadly d8", "On a critical hit, the weapon adds a weapon damage die of the listed size. Roll this after doubling the weapons damage. This increases to two dice if the weapon has a "),
(258, 15, "Deadly d10", "On a critical hit, the weapon adds a weapon damage die of the listed size. Roll this after doubling the weapons damage. This increases to two dice if the weapon has a "),
(259, 15, "Versatile S", "A versatile weapon can be used to deal a different type of damage than that listed in the Damage entry. This trait indicates the alternate damage type. For instance, a piercing weapon that is versatile S can be used to deal piercing or slashing damage. You choose the damage type each time you make an attack."),
(260, 15, "Versatile P", "A versatile weapon can be used to deal a different type of damage than that listed in the Damage entry. This trait indicates the alternate damage type. For instance, a piercing weapon that is versatile S can be used to deal piercing or slashing damage. You choose the damage type each time you make an attack."),
(261, 15, "Versatile B", "A versatile weapon can be used to deal a different type of damage than that listed in the Damage entry. This trait indicates the alternate damage type. For instance, a piercing weapon that is versatile S can be used to deal piercing or slashing damage. You choose the damage type each time you make an attack."),
(262, 15, "Two-Hand d8", "This weapon can be wielded with two hands. Doing so changes its weapon damage die to the indicated value. This change applies to all the weapons damage dice, such as those from "),
(263, 15, "Two-Hand d10", "This weapon can be wielded with two hands. Doing so changes its weapon damage die to the indicated value. This change applies to all the weapons damage dice, such as those from "),
(264, 15, "Two-Hand d12", "This weapon can be wielded with two hands. Doing so changes its weapon damage die to the indicated value. This change applies to all the weapons damage dice, such as those from "),
(265, 15, "Fatal d8", "The fatal trait includes a die size. On a critical hit, the weapons damage die increases to that die size instead of the normal die size, and the weapon adds one additional damage die of the listed size."),
(266, 15, "Fatal d10", "The fatal trait includes a die size. On a critical hit, the weapons damage die increases to that die size instead of the normal die size, and the weapon adds one additional damage die of the listed size."),
(267, 15, "Fatal d12", "The fatal trait includes a die size. On a critical hit, the weapons damage die increases to that die size instead of the normal die size, and the weapon adds one additional damage die of the listed size."),
(268, 15, "Jousting d6", "The weapon is suited for mounted combat with a harness or similar means. When mounted, if you moved at least 10 feet on the action before your attack, add a circumstance bonus to damage for that attack equal to the number of damage dice for the weapon. In addition, while mounted, you can wield the weapon in one hand, changing the damage die to the listed value."),
(269, 15, "Volley 30 ft.", "This ranged weapon is less effective at close distances. Your attacks against targets that are at a distance within the range listed take a 2 penalty.");