Skip to content

Commit 15d0f7a

Browse files
committed
Fix bugs mentioned on Discord
- BoMT: Feywrought Armor & Gloomwrought Armor now appear correctly in the drop-down - WBtW: Magic item "Steel" now adds Revivify - GotG: Wyrmreaver Gauntlets no longer produce an error
1 parent a3b27d5 commit 15d0f7a

File tree

7 files changed

+4725
-4702
lines changed

7 files changed

+4725
-4702
lines changed

WotC material/all_WotC_pub+UA.js

Lines changed: 2356 additions & 2348 deletions
Large diffs are not rendered by default.

WotC material/all_WotC_pub+UA.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WotC material/all_WotC_published.js

Lines changed: 2356 additions & 2349 deletions
Large diffs are not rendered by default.

WotC material/all_WotC_published.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WotC material/pub_20210921_WBtW.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,14 @@ MagicItemsList["steel"] = {
458458
source : [["WBtW", 214]],
459459
modifiers : [2, 2],
460460
selectNow : true
461+
}],
462+
usages : 1,
463+
recovery : "dawn",
464+
spellcastingBonus : [{
465+
name : "Once per dawn",
466+
spells : ["revivify"],
467+
selection : ["revivify"],
468+
firstCol : "oncelr"
461469
}]
462470
}
463471
MagicItemsList["woodcutter's axe"] = {

WotC material/pub_20230815_GotG.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ MagicItemsList["wyrmreaver gauntlets"] = {
14651465
"\n The fists last for 1 minute or until you are incapacitated. While the spectral fists are active, unarmed strikes you make on your turn have a reach of 30 feet, and when you hit a creature with an opportunity attack made with your unarmed strike, the creature must succeed on a Strength saving throw (DC equals 8 + your proficiency bonus + your Strength modifier) or have the prone condition."+
14661466
"\n Once the runes have been invoked, they can't be invoked again until the next dawn.",
14671467
description : "+1d6 force damage to unarmed strikes. Each long rest, choose a resistance it grants me: acid, cold, fire, lightning, or poison. As a bonus action once per dawn, invoke the rune for 1 min: 30 ft range unarmed strikes, target hit with opportunity attacks with it must make Str save DC 8+Prof B.+Str mod or be knocked prone.",
1468-
calculate : "var iProfB = Number(How('Proficiency Bonus')), iMod = Number(What('Str Mod'))); event.value = (typePF ? '' : 'These gauntlets add ') + '+1d6 force damage to unarmed strikes. Each long rest, I pick a resistance it grants me: acid, cold, fire, lightning, or poison. As a bonus action once per dawn, invoke the rune for 1 min: 30 ft range unarmed strikes, target hit with opportunity attacks with it must make Str save DC ' + (8 + iProfB + iMod) + ' (8+Prof+Str) or be knocked prone.';",
1468+
calculate : "var iProfB = Number(How('Proficiency Bonus')), iMod = Number(What('Str Mod')); event.value = (typePF ? '' : 'These gauntlets add ') + '+1d6 force damage to unarmed strikes. Each long rest, I pick a resistance it grants me: acid, cold, fire, lightning, or poison. As a bonus action once per dawn, invoke the rune for 1 min: 30 ft range unarmed strikes, target hit with opportunity attacks with it must make Str save DC ' + (8 + iProfB + iMod) + ' (8+Prof+Str) or be knocked prone.';",
14691469
dmgres : ["acid,cold,fire,lightn.,or poison"],
14701470
calcChanges : {
14711471
atkAdd : [

WotC material/pub_20231114_BoMT.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@ MagicItemsList["fate dealer's deck"] = {
11791179
};
11801180
MagicItemsList["feywrought armor"] = {
11811181
name : "Feywrought Armor",
1182-
name : /feywrought.*armou?r/i,
1182+
nameTest : /feywrought.*armou?r/i,
11831183
source : [["BoMT", 67]], // Chapter 9: Knight
11841184
type : "armor (light, medium, or heavy)",
11851185
rarity : "rare",
@@ -1328,7 +1328,7 @@ MagicItemsList["glimmering moonbow"] = {
13281328
};
13291329
MagicItemsList["gloomwrought armor"] = {
13301330
name : "Gloomwrought Armor",
1331-
name : /gloomwrought.*armou?r/i,
1331+
nameTest : /gloomwrought.*armou?r/i,
13321332
source : [["BoMT", 67]], // Chapter 9: Knight
13331333
type : "armor (light, medium, or heavy)",
13341334
rarity : "rare",

0 commit comments

Comments
 (0)