Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

Difference between revisions of "Rotfish"

From Quake Wiki

m (updated infobox)
(added basic entity info)
Line 13: Line 13:
 
If '''Rotfishes''' are even a concern, let them get moderately close and kill them with a shot from the [[Double-Barrelled Shotgun]], that will take care of them most likely.
 
If '''Rotfishes''' are even a concern, let them get moderately close and kill them with a shot from the [[Double-Barrelled Shotgun]], that will take care of them most likely.
  
{{Monsters}}
+
==Tactics==
 +
 
 +
 
 +
<br>
 +
<br>
 +
 
 +
{{Infobox_entity
 +
| classname = monster_fish
 +
| commonname = [[Fish]]
 +
| type = point
 +
| class = [[Monster (entity class)|monster]]
 +
| dimensions = 32 x 32 x 48
 +
| quakec = [[fish.qc]]
 +
| precaches =
 +
progs/fish.mdl<br>
 +
fish/death.wav<br>
 +
fish/bite.wav<br>
 +
fish/idle.wav
 +
}}
 +
 
 +
==Entity information==
 +
 
 +
'''monster_fish''' is the [[Entity|entity]] for placing '''Fish''' in a level.
 +
 
 +
===Usage===
 +
 
 +
 
 +
===Attributes===
 +
 
 +
====Keys====
 +
{| class="wikitable" width="100%"
 +
|-
 +
| ! bgcolor="#eeeeee" width="100px" | ''targetname'' || The targetname of the Fish. When triggered, the Fish will wake up if inactive.
 +
|-
 +
| ! bgcolor="#eeeeee" | ''target'' || The targetname of the entity to be triggered when the Fish dies.
 +
|-
 +
| ! bgcolor="#eeeeee" | ''killtarget'' || The targetname of the entity to be removed when the Fish dies.
 +
|}
 +
 
 +
====Spawnflags====
 +
The monster_fish entity supports the following [[Entity#Spawnflags|spawnflags]]:
 +
{| class="wikitable" width="100%"
 +
! width="50" | Flag
 +
! width="150" | Common Name
 +
! Description
 +
|-
 +
| 1
 +
| Ambush
 +
| The Fish will not wake up from seeing other monsters wake up or hearing sounds.
 +
|}
 +
 
 +
It also supports the standard spawnflags for difficulty and deathmatch presence.
 +
{{Template:Mode_spawnflags
 +
| entity = The Fish
 +
}}
 +
 
 +
===Definitions===
 +
 
 +
====FGD Definition====
 +
This is the format used by [[TrenchBroom]] and [[Worldcraft]]. Note that the model(...) parameter is not supported by Worldcraft. This does not include the Monster base class definition, which is also required.
 +
<pre>
 +
@PointClass base(Monster) size(-16 -16 -24, 16 16 24) model(":progs/enforcer.mdl")
 +
    = monster_fish : "Fish" []
 +
</pre>
 +
 
 +
====DEF Definition====
 +
This is the definition format used for most old Quake editors, including the original [[QuakeEd]].
 +
<pre>
 +
/*QUAKED monster_fish (1 0 0) (-16 -16 -24) (16 16 24) Ambush
 +
*/
 +
</pre>
 +
 
 +
[[Category:Quake entities]][[Category:Monsters]]

Revision as of 05:28, 9 April 2013

Rotfish
Rotfish

"Disgusting little critters who dish it out, but can't take it."

Health 25
Gib threshold {{{gibthresh}}}
Attacks Bite
Drop nothing
1st appearance e2m3
Game version Registered
Death message Player was fed to the Rotfish
† The data files for monsters that appear only in the registered version of Quake reside in pak1.pak rather than pak0.pak.

If Rotfishes are even a concern, let them get moderately close and kill them with a shot from the Double-Barrelled Shotgun, that will take care of them most likely.

Tactics



monster_fish
(Fish)
Entity type point
Entity class monster
Dimensions 32 x 32 x 48
Quake-C fish.qc
Precaches progs/fish.mdl

fish/death.wav
fish/bite.wav
fish/idle.wav

Entity information

monster_fish is the entity for placing Fish in a level.

Usage

Attributes

Keys

targetname The targetname of the Fish. When triggered, the Fish will wake up if inactive.
target The targetname of the entity to be triggered when the Fish dies.
killtarget The targetname of the entity to be removed when the Fish dies.

Spawnflags

The monster_fish entity supports the following spawnflags:

Flag Common Name Description
1 Ambush The Fish will not wake up from seeing other monsters wake up or hearing sounds.

It also supports the standard spawnflags for difficulty and deathmatch presence.

Flag Common Name Description
256 Not on Easy The Fish will not spawn on Easy difficulty.
512 Not on Normal The Fish will not spawn on Normal difficulty.
1024 Not on Hard The Fish will not spawn on Hard difficulty.
2048 Not in Deathmatch The Fish will not spawn in Deathmatch mode.

Definitions

FGD Definition

This is the format used by TrenchBroom and Worldcraft. Note that the model(...) parameter is not supported by Worldcraft. This does not include the Monster base class definition, which is also required.

@PointClass base(Monster) size(-16 -16 -24, 16 16 24) model(":progs/enforcer.mdl")
    = monster_fish : "Fish" []

DEF Definition

This is the definition format used for most old Quake editors, including the original QuakeEd.

/*QUAKED monster_fish (1 0 0) (-16 -16 -24) (16 16 24) Ambush
*/