Added Red-Haired Goddess from Starcevo Culture for Genesis month...

This commit is contained in:
Ognjen Milan Robovic 2024-06-14 16:40:48 -04:00
parent 48faba3fe0
commit b58a2f0529

View File

@ -9,6 +9,7 @@ package deity is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
type enumeration is (
KSENIA, -- Ksenija Atanasijevic / Philosophy / Red-Haired Goddess / Starcevo Culture
AEZORA, MITENA, SHEILA, ILIONA, ULDRAE, KANAKO,
HENEAL, EVELOR, OROHAN, XORANA
);
@ -29,16 +30,17 @@ package deity is
count : constant natural := enumeration'pos (enumeration'last) + 1;
description : constant array (enumeration) of definition := (
AEZORA => (new string'("Aezora"), 0, faction.fairy, attribute.offense, skill.archery, resource.gold),
MITENA => (new string'("Mitena"), 0, faction.dwarf, attribute.offense, skill.archery, resource.gold),
SHEILA => (new string'("Sheila"), 0, faction.gnoll, attribute.offense, skill.archery, resource.gold),
ILIONA => (new string'("Iliona"), 0, faction.kobold, attribute.offense, skill.archery, resource.gold),
ULDRAE => (new string'("Uldrae"), 0, faction.goblin, attribute.offense, skill.archery, resource.gold),
KANAKO => (new string'("Kanako"), 0, faction.imp, attribute.offense, skill.archery, resource.gold),
HENEAL => (new string'("Heneal"), 0, faction.human, attribute.offense, skill.archery, resource.gold),
EVELOR => (new string'("Evelor"), 0, faction.elf, attribute.offense, skill.archery, resource.gold),
OROHAN => (new string'("Orohan"), 0, faction.orc, attribute.offense, skill.archery, resource.gold),
XORANA => (new string'("Xorana"), 0, faction.neutral, attribute.offense, skill.archery, resource.gold)
KSENIA => (new string'("Ksenia"), -120, faction.neutral, attribute.stamina, skill.athletics, resource.wood),
AEZORA => (new string'("Aezora"), 10, faction.fairy, attribute.reach, skill.archery, resource.gem),
MITENA => (new string'("Mitena"), 10, faction.dwarf, attribute.defense, skill.resistance, resource.stone),
SHEILA => (new string'("Sheila"), 0, faction.gnoll, attribute.speed, skill.exploration, resource.leather),
ILIONA => (new string'("Iliona"), 0, faction.kobold, attribute.stamina, skill.logistics, resource.metal),
ULDRAE => (new string'("Uldrae"), -10, faction.goblin, attribute.offense, skill.skirmish, resource.wood),
KANAKO => (new string'("Kanako"), -10, faction.imp, attribute.wisdom, skill.alchemy, resource.gold),
HENEAL => (new string'("Heneal"), -60, faction.human, attribute.defense, skill.mercantile, resource.gold),
EVELOR => (new string'("Evelor"), -60, faction.elf, attribute.stamina, skill.medicine, resource.gold),
OROHAN => (new string'("Orohan"), -60, faction.orc, attribute.offense, skill.tactics, resource.gold),
XORANA => (new string'("Xorana"), -120, faction.neutral, attribute.wisdom, skill.eremnokinesis, resource.metal)
);
sprite : array (enumeration) of core.sprite;