Draft: Ajout d'un bestiaire #109

Open
kazhnuz wants to merge 6 commits from bestiaire into main
Showing only changes of commit ed6e1e6a47 - Show all commits

View file

@ -3,5 +3,13 @@ local datas = {}
datas.hp = {1, 1, 2, 3, 4, 5, 6}
datas.competences = {10, 30, 30, 50, 50, 70}
datas.stats = {
high = 80; -- La statistique max "naturel", peut être dépassé par les stats de base, mais ne peut aller au dessus
[0] = {base = 40, malus = {20, 30, 30}, bonus = {50, 50, 60}},
[1] = {base = 50, malus = {20, 30, 40}, bonus = {60, 70, 80}},
[2] = {base = 50, malus = {30, 30, 40}, bonus = {70, 80, 80}},
[3] = {base = 50, malus = {30, 30, 40}, bonus = {80, 80, 100}}, -- Potentiel
[4] = {base = 50, malus = {30, 30, 40}, bonus = {80, 80, 120}},
[5] = {base = 50, malus = {30, 30, 40}, bonus = {80, 100, 140}}, -- Potentiel+
[6] = {base = 50, malus = {30, 30, 40}, bonus = {80, 120, 150}},
[7] = {base = 50, malus = {30, 30, 40}, bonus = {80, 80, 180}}, -- Supérieur au max des joueurs
[8] = {base = 50, malus = {30, 30, 40}, bonus = {80, 80, 200}},
}