Grabbed dndbeyond's source code

```
~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js
```
This commit is contained in:
2025-05-28 11:50:03 -07:00
commit 8df9031d27
3592 changed files with 319051 additions and 0 deletions
@@ -0,0 +1,21 @@
import { AdjustmentTypeEnum } from '../Value';
export var ActionTypeEnum;
(function (ActionTypeEnum) {
ActionTypeEnum[ActionTypeEnum["WEAPON"] = 1] = "WEAPON";
ActionTypeEnum[ActionTypeEnum["SPELL"] = 2] = "SPELL";
ActionTypeEnum[ActionTypeEnum["GENERAL"] = 3] = "GENERAL";
})(ActionTypeEnum || (ActionTypeEnum = {}));
export var AttackSubtypeEnum;
(function (AttackSubtypeEnum) {
AttackSubtypeEnum[AttackSubtypeEnum["MANUFACTURED"] = 1] = "MANUFACTURED";
AttackSubtypeEnum[AttackSubtypeEnum["NATURAL"] = 2] = "NATURAL";
AttackSubtypeEnum[AttackSubtypeEnum["UNARMED"] = 3] = "UNARMED";
})(AttackSubtypeEnum || (AttackSubtypeEnum = {}));
export const ACTION_CUSTOMIZATION_ADJUSTMENT_TYPES = [
AdjustmentTypeEnum.TO_HIT_OVERRIDE,
AdjustmentTypeEnum.TO_HIT_BONUS,
AdjustmentTypeEnum.FIXED_VALUE_BONUS,
AdjustmentTypeEnum.DISPLAY_AS_ATTACK,
AdjustmentTypeEnum.NAME_OVERRIDE,
AdjustmentTypeEnum.NOTES,
];