xhads/source/skill.ads

55 lines
2.8 KiB
Ada

with core;
package skill is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
type codex is (
archery, diplomacy, estates, exploration, leadership, logistics,
medicine, mercantile, mysticism, necromancy, sorcery, tactics
);
------------------------------------------------------------------------------------------
subtype base_limit is natural range 0 .. 36;
type information is
record
name : core.short_string;
base : base_limit;
text : core.long_string;
end record;
type points is array (codex) of base_limit;
------------------------------------------------------------------------------------------
count : constant natural := codex'pos (codex'last) + 1;
trait : constant array (codex) of information := (
("Archery ", 0, "- "),
("Diplomacy ", 0, "- "),
("Estates ", 0, "- "),
("Exploration ", 0, "- "),
("Leadership ", 0, "- "),
("Logistics ", 0, "- "),
("Medicine ", 0, "- "),
("Mercantile ", 0, "- "),
("Mysticism ", 0, "- "),
("Necromancy ", 0, "- "),
("Sorcery ", 0, "- "),
("Tactics ", 0, "- ")
);
------------------------------------------------------------------------------------------
procedure configure;
procedure draw (index : in codex; x, y : in integer);
procedure menu (x, y : in integer; center : in boolean);
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end skill;