xhads/source/effect.ads

36 lines
1.1 KiB
Ada
Raw Normal View History

-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
--
-- GNU General Public Licence (version 3 or later)
2024-02-15 21:03:09 -05:00
package effect is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2024-05-31 07:14:00 -04:00
type enumeration is (
2024-05-28 06:08:45 -04:00
idle,
2024-05-31 07:14:00 -04:00
modify_attribute,
modify_skill,
modify_resource,
modify_material
);
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------
type information is record
2024-05-31 07:14:00 -04:00
kind : enumeration;
modifier : integer;
2024-05-31 07:14:00 -04:00
amount : integer;
permanent : boolean;
duration : natural;
end record;
none : constant information := (idle, 0, 0, false, 0);
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------
procedure apply (data : in information);
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end effect;