mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
18 lines
307 B
Text
18 lines
307 B
Text
class RedneckBubbaStand : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "BUBBASTAND";
|
|
+INTERNAL_BADGUY;
|
|
Strength 100;
|
|
}
|
|
|
|
override void initialize()
|
|
{
|
|
self.actorstayput = self.sector; // make this a flag once everything has been exported.
|
|
self.scale = (0.390625, 0.328125);
|
|
self.setClipDistFromTile();
|
|
}
|
|
|
|
|
|
}
|