2024-04-25 00:27:13 -04:00
|
|
|
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
|
|
--
|
|
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
|
2024-02-22 03:29:04 -05:00
|
|
|
with core, effect, resource, faction;
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
package construction is
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2024-04-26 16:05:48 -04:00
|
|
|
type enumeration is (
|
2024-04-25 03:46:07 -04:00
|
|
|
a, b, c, d, e, f
|
2024-02-15 21:03:09 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
type information is
|
|
|
|
record
|
|
|
|
name : core.short_string;
|
2024-04-26 16:05:48 -04:00
|
|
|
kind : faction.enumeration;
|
2024-04-23 16:19:29 -04:00
|
|
|
price : resource.points;
|
2024-02-15 21:03:09 -05:00
|
|
|
frames : integer;
|
2024-04-26 16:05:48 -04:00
|
|
|
evoke : effect.enumeration;
|
2024-02-15 21:03:09 -05:00
|
|
|
end record;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-04-26 16:05:48 -04:00
|
|
|
count : constant natural := enumeration'pos (enumeration'last) + 1;
|
2024-02-19 16:20:38 -05:00
|
|
|
|
2024-04-26 16:05:48 -04:00
|
|
|
trait : constant array (enumeration) of information := (
|
2024-04-25 03:46:07 -04:00
|
|
|
("A ", faction.dwarf, (others => 0), 1, effect.none),
|
|
|
|
("B ", faction.fairy, (others => 0), 1, effect.none),
|
|
|
|
("C ", faction.gnoll, (others => 0), 1, effect.none),
|
|
|
|
("D ", faction.goblin, (others => 0), 1, effect.none),
|
|
|
|
("E ", faction.imp, (others => 0), 1, effect.none),
|
|
|
|
("F ", faction.kobold, (others => 0), 1, effect.none)
|
2024-02-15 21:03:09 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
procedure configure;
|
|
|
|
|
2024-04-26 16:05:48 -04:00
|
|
|
procedure draw (index : in enumeration; x, y : in integer);
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end construction;
|