stinger_m/zscript/uminigun.zsc
Marisa Kirisame 9c916d09d9 Added Unreal '96 intro.
Fully implemented all Translator features, including mouse input.
"Class icons" for player config menu (DT xdevel change).
Fix pickup messages for some ammo types (also in DT xdevel).
2019-09-01 22:10:42 +02:00

22 lines
473 B
Text

Class UMiniAmmo : Ammo
{
Default
{
Tag "$T_MINIAMMO";
Inventory.PickupMessage "";
Inventory.Amount 50;
Inventory.MaxAmount 200;
Ammo.BackpackAmount 100;
Ammo.BackpackMaxAmount 400;
Ammo.DropAmount 20;
}
override String PickupMessage()
{
if ( PickupMsg.Length() > 0 ) return Super.PickupMessage();
return String.Format("%s%d%s",StringTable.Localize("$I_MINIAMMOL"),Amount,StringTable.Localize("$I_MINIAMMOR"));
}
}
Class UMinigun : UnrealWeapon
{
}