mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-03 09:32:45 +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;
|
|
}
|
|
}
|
|
|