2024-04-25 00:27:13 -04:00
|
|
|
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
|
|
--
|
|
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
|
|
|
|
with core, attribute, skill, resource, faction;
|
2024-02-22 03:29:04 -05:00
|
|
|
|
|
|
|
package chad is
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
type codex is (
|
2024-04-25 00:27:13 -04:00
|
|
|
ada, richard, ognjen, wouter, john, marina
|
2024-02-22 03:29:04 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
type information is
|
|
|
|
record
|
2024-03-13 18:18:07 -04:00
|
|
|
name : core.short_string;
|
|
|
|
kind : faction.codex;
|
|
|
|
bonus_attribute : attribute.codex;
|
|
|
|
bonus_skill : skill.codex;
|
|
|
|
bonus_resource : resource.codex;
|
2024-02-22 03:29:04 -05:00
|
|
|
end record;
|
|
|
|
|
2024-03-13 18:32:59 -04:00
|
|
|
type data is
|
|
|
|
record
|
|
|
|
index : codex;
|
2024-04-23 16:19:29 -04:00
|
|
|
attributes : attribute.points;
|
|
|
|
skills : skill.points;
|
|
|
|
resources : resource.points;
|
2024-03-13 18:32:59 -04:00
|
|
|
end record;
|
|
|
|
|
2024-02-22 03:29:04 -05:00
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
count : constant natural := codex'pos (codex'last) + 1;
|
|
|
|
|
2024-03-17 15:15:18 -04:00
|
|
|
trait : constant array (codex) of information := (
|
2024-04-25 00:27:13 -04:00
|
|
|
("Ada Augusta King ", faction.fairy, attribute.defense, skill.diplomacy, resource.steel),
|
|
|
|
("Richard Martin Stallman ", faction.dwarf, attribute.offense, skill.leadership, resource.wood),
|
|
|
|
("Ognjen Milan Robovic ", faction.gnoll, attribute.stamina, skill.archery, resource.leather),
|
|
|
|
("Wouter van Oortmerssen ", faction.kobold, attribute.speed, skill.medicine, resource.stone),
|
|
|
|
("John Warner Backus ", faction.goblin, attribute.wisdom, skill.sorcery, resource.crystal),
|
|
|
|
("Marina Ann Hantzis ", faction.imp, attribute.reach, skill.necromancy, resource.gold)
|
2024-02-22 03:29:04 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
procedure configure;
|
|
|
|
|
|
|
|
procedure draw (index : in codex; x, y : in integer);
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end chad;
|