mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-12-17 15:40:37 +00:00
liste des sorts
This commit is contained in:
parent
f3643e6eaf
commit
b1b97a01e9
373 changed files with 9259 additions and 34 deletions
|
|
@ -1,9 +1,10 @@
|
|||
export function displaySchoolLevel (spell) {
|
||||
let result = ''
|
||||
if (spell.level == 0) {
|
||||
if (spell.level == 0 || spell.level == "0") {
|
||||
result = spell.school + ', Tour de magie'
|
||||
} else {
|
||||
result = spell.school + ' de niveau ' + spell.level
|
||||
}
|
||||
result = spell.school + ' de niveau ' + spell.level
|
||||
if (spell.ritual) {
|
||||
result = result + ' (rituel)'
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue