@lippelt/srd-dnd5e-2024 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +12 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,23 +2,23 @@
2
2
 
3
3
  Módulo D&D 5e (2024 / "One D&D") para [`@lippelt/srd-core`](../core).
4
4
 
5
- Baseado no [System Reference Document 5.2](https://dnd.wizards.com/resources/systems-reference-document) da Wizards of the Coast, sob **Creative Commons Attribution 4.0 International**.
5
+ > D&D® é trademark da Wizards of the Coast LLC. Baseado no [System Reference Document 5.2](https://dnd.wizards.com/resources/systems-reference-document) sob **Creative Commons Attribution 4.0 International**.
6
6
 
7
7
  ## Diferenças vs `@lippelt/srd-dnd5e-2014`
8
8
 
9
- - **Exhaustion**: agora uma escala única 1..10 com **−2 cumulativo** em d20 tests por nível; nível 10 = morte (vs 6 níveis discretos do 5.1).
10
- - O parâmetro `exhaustion` no `roll('d20')` / `roll('attack')` / `roll('save')` aplica o penalty automaticamente.
9
+ - **Exaustão**: agora uma escala única 1..10 com **−2 cumulativo** em testes com d20 por nível; nível 10 = morte (em vez dos 6 níveis discretos do 5.1).
10
+ - O parâmetro `exhaustion` em `roll('d20')` / `roll('attack')` / `roll('save')` aplica a penalidade automaticamente.
11
11
  - O tracker tem o campo `exhaustion` (0..10) pra registrar.
12
- - **Conditions**: 14 + Exhaustion como entrada única (em vez de `exhaustion-1` até `exhaustion-6`).
13
- - **Resto da matemática**: idêntica à 2014 — advantage/disadvantage, crit em 20 natural, save DC = 8 + prof + mod, etc.
12
+ - **Condições**: 14 + Exaustão como entrada única (em vez de `exhaustion-1` até `exhaustion-6`).
13
+ - **Resto da matemática**: idêntica à 2014 — vantagem/desvantagem, crítico em 20 natural, CD de resistência = 8 + prof + mod etc.
14
14
 
15
- ## Bundle
15
+ ## O que inclui
16
16
 
17
- - **9 dice presets** — d20 (+ adv/desv), d4-d12, d100
18
- - **15 conditions** — Blinded, Charmed, Deafened, Exhaustion (level), Frightened, Grappled, Incapacitated, Invisible, Paralyzed, Petrified, Poisoned, Prone, Restrained, Stunned, Unconscious
19
- - **4 tracker fields** — CA, Exh, Mortes ✓, Mortes ✗
20
- - **Rules:** `check`, `attack`, `save`, `damage`, `applyDamage` (resistance/vulnerability/immunity)
21
- - **Helpers:** `abilityMod`, `spellSaveDC`, `spellAttackBonus`, `exhaustionPenalty`
17
+ - **9 presets de dados** — d20 (+ vantagem/desvantagem), d4d12, d100
18
+ - **15 condições** — Cego, Enfeitiçado, Surdo, Exaustão (nível), Amedrontado, Agarrado, Incapacitado, Invisível, Paralisado, Petrificado, Envenenado, Caído, Contido, Atordoado, Inconsciente
19
+ - **4 campos de status** — CA, Exaustão, Mortes ✓, Mortes ✗
20
+ - **Regras:** `check`, `attack`, `save`, `damage`, `applyDamage` (resistência/vulnerabilidade/imunidade)
21
+ - **Utilitários:** `abilityMod`, `spellSaveDC`, `spellAttackBonus`, `exhaustionPenalty`
22
22
 
23
23
  ## Uso
24
24
 
@@ -31,4 +31,4 @@ register(dnd5e2024)
31
31
 
32
32
  ## Licença
33
33
 
34
- [MIT](LICENSE). Mecânica deriva do SRD 5.2 (CC-BY 4.0, Wizards of the Coast).
34
+ [MIT](LICENSE) (código). Mecânica derivada do SRD 5.2 (CC-BY 4.0, Wizards of the Coast).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lippelt/srd-dnd5e-2024",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "D&D 5e (2024) system module for @lippelt/srd-core — SRD 5.2, CC-BY 4.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",