mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
22 lines
281 B
Text
22 lines
281 B
Text
class DukeSixpak : DukeItemBase
|
|
{
|
|
default
|
|
{
|
|
pic "SIXPAK";
|
|
}
|
|
}
|
|
|
|
class RedneckPorkRinds : DukeItemBase
|
|
{
|
|
default
|
|
{
|
|
pic "SIXPAK";
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
commonItemSetup((0.203125, 0.140625));
|
|
if (Raze.isRRRA()) self.cstat = CSTAT_SPRITE_BLOCK_HITSCAN;
|
|
}
|
|
}
|
|
|