mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
24 lines
479 B
Text
24 lines
479 B
Text
|
|
// Boost Armor Artifact (Dragonskin Bracers) --------------------------------
|
|
|
|
class ArtiBoostArmor : Inventory native
|
|
{
|
|
Default
|
|
{
|
|
+COUNTITEM
|
|
+FLOATBOB
|
|
Inventory.DefMaxAmount;
|
|
Inventory.PickupFlash "PickupFlash";
|
|
+INVENTORY.INVBAR +INVENTORY.FANCYPICKUPSOUND
|
|
Inventory.Icon "ARTIBRAC";
|
|
Inventory.PickupSound "misc/p_pkup";
|
|
Inventory.PickupMessage "$TXT_ARTIBOOSTARMOR";
|
|
Tag "$TAG_ARTIBOOSTARMOR";
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
BRAC ABCDEFGH 4 Bright;
|
|
Loop;
|
|
}
|
|
}
|