xhads/source/construction.ads

51 lines
2.1 KiB
Ada
Raw Normal View History

-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
--
-- GNU General Public Licence (version 3 or later)
with core, effect, resource, faction;
2024-02-15 21:03:09 -05:00
package construction is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
type enumeration is (
house, cottage, shack, homestead, hut, den
2024-02-15 21:03:09 -05:00
);
------------------------------------------------------------------------------------------
type definition is record
name : access string;
kind : faction.enumeration;
price : resource.price;
frames : natural;
evoke : effect.information;
2024-02-15 21:03:09 -05:00
end record;
2024-06-10 04:15:35 -04:00
type information is record
index : enumeration;
x : integer;
y : integer;
end record;
type informations is array (natural range <>) of information;
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------
count : constant natural := enumeration'pos (enumeration'last) + 1;
2024-06-02 07:02:36 -04:00
description : constant array (enumeration) of definition := (
house => (new string'("Dwarf House"), faction.dwarf, (others => 0), 1, effect.none),
cottage => (new string'("Fairy Cottage"), faction.fairy, (others => 0), 1, effect.none),
shack => (new string'("Gnoll Shack"), faction.gnoll, (others => 0), 1, effect.none),
homestead => (new string'("Kobold Homestead"), faction.kobold, (others => 0), 1, effect.none),
hut => (new string'("Goblin Hut"), faction.goblin, (others => 0), 1, effect.none),
den => (new string'("Imp Den"), faction.imp, (others => 0), 1, effect.none)
2024-06-02 07:02:36 -04:00
);
2024-06-10 04:15:35 -04:00
game : array (enumeration) of core.sprite;
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end construction;