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-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-05-19 10:33:58 -04:00
|
|
|
);
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-06-01 11:56:18 -04:00
|
|
|
type information is record
|
2024-06-05 08:29:55 -04:00
|
|
|
kind : enumeration := idle;
|
|
|
|
modifier : integer := 0;
|
|
|
|
amount : integer := 0;
|
|
|
|
permanent : boolean := false;
|
|
|
|
duration : natural := 0;
|
2024-05-19 10:33:58 -04:00
|
|
|
end record;
|
2024-02-19 16:20:38 -05:00
|
|
|
|
2024-06-05 08:29:55 -04:00
|
|
|
none : constant information := (others => <>);
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end effect;
|