Compare commits
2 commits
e3b5e6ce01
...
270dd5ab19
Author | SHA1 | Date | |
---|---|---|---|
270dd5ab19 | |||
e6b6b93597 |
5 changed files with 132 additions and 2 deletions
2
data/spells/index.json
Normal file
2
data/spells/index.json
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
{ "GRI-fr": "spells-grimoire-fr.json"
|
||||||
|
}
|
64
data/spells/spells-grimoire-fr.json
Normal file
64
data/spells/spells-grimoire-fr.json
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
{ "spell": [ {
|
||||||
|
"name": "Acid Splash",
|
||||||
|
"source": "PHB",
|
||||||
|
"page": 211,
|
||||||
|
"srd": true,
|
||||||
|
"basicRules": true,
|
||||||
|
"level": 0,
|
||||||
|
"school": "C",
|
||||||
|
"time": [
|
||||||
|
{
|
||||||
|
"number": 1,
|
||||||
|
"unit": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"range": {
|
||||||
|
"type": "point",
|
||||||
|
"distance": {
|
||||||
|
"type": "feet",
|
||||||
|
"amount": 60
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"components": {
|
||||||
|
"v": true,
|
||||||
|
"s": true
|
||||||
|
},
|
||||||
|
"duration": [
|
||||||
|
{
|
||||||
|
"type": "instant"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entries": [
|
||||||
|
"You hurl a bubble of acid. Choose one creature you can see within range, or choose two creatures you can see within range that are within 5 feet of each other. A target must succeed on a Dexterity saving throw or take {@damage 1d6} acid damage.",
|
||||||
|
"This spell's damage increases by {@dice 1d6} when you reach 5th level ({@damage 2d6}), 11th level ({@damage 3d6}), and 17th level ({@damage 4d6})."
|
||||||
|
],
|
||||||
|
"scalingLevelDice": {
|
||||||
|
"label": "acid damage",
|
||||||
|
"scaling": {
|
||||||
|
"1": "1d6",
|
||||||
|
"5": "2d6",
|
||||||
|
"11": "3d6",
|
||||||
|
"17": "4d6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"damageInflict": [
|
||||||
|
"acid"
|
||||||
|
],
|
||||||
|
"savingThrow": [
|
||||||
|
"dexterity"
|
||||||
|
],
|
||||||
|
"miscTags": [
|
||||||
|
"SCL",
|
||||||
|
"SGT"
|
||||||
|
],
|
||||||
|
"areaTags": [
|
||||||
|
"ST",
|
||||||
|
"MT"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
64
data/spells/spells-grimoire.json
Normal file
64
data/spells/spells-grimoire.json
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
{ "spell": [ {
|
||||||
|
"name": "Acid Splash",
|
||||||
|
"source": "PHB",
|
||||||
|
"page": 211,
|
||||||
|
"srd": true,
|
||||||
|
"basicRules": true,
|
||||||
|
"level": 0,
|
||||||
|
"school": "C",
|
||||||
|
"time": [
|
||||||
|
{
|
||||||
|
"number": 1,
|
||||||
|
"unit": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"range": {
|
||||||
|
"type": "point",
|
||||||
|
"distance": {
|
||||||
|
"type": "feet",
|
||||||
|
"amount": 60
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"components": {
|
||||||
|
"v": true,
|
||||||
|
"s": true
|
||||||
|
},
|
||||||
|
"duration": [
|
||||||
|
{
|
||||||
|
"type": "instant"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entries": [
|
||||||
|
"You hurl a bubble of acid. Choose one creature you can see within range, or choose two creatures you can see within range that are within 5 feet of each other. A target must succeed on a Dexterity saving throw or take {@damage 1d6} acid damage.",
|
||||||
|
"This spell's damage increases by {@dice 1d6} when you reach 5th level ({@damage 2d6}), 11th level ({@damage 3d6}), and 17th level ({@damage 4d6})."
|
||||||
|
],
|
||||||
|
"scalingLevelDice": {
|
||||||
|
"label": "acid damage",
|
||||||
|
"scaling": {
|
||||||
|
"1": "1d6",
|
||||||
|
"5": "2d6",
|
||||||
|
"11": "3d6",
|
||||||
|
"17": "4d6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"damageInflict": [
|
||||||
|
"acid"
|
||||||
|
],
|
||||||
|
"savingThrow": [
|
||||||
|
"dexterity"
|
||||||
|
],
|
||||||
|
"miscTags": [
|
||||||
|
"SCL",
|
||||||
|
"SGT"
|
||||||
|
],
|
||||||
|
"areaTags": [
|
||||||
|
"ST",
|
||||||
|
"MT"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
|
@ -4,7 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<title>fateforge-tools</title>
|
<title>fateforge-tools</title>
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
|
||||||
<title>Spells - fateforge.tools</title>
|
<title>Spells - fateforge.tools</title>
|
||||||
|
|
Loading…
Reference in a new issue