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