Talk:Npc barnacle (hlvr)

From Valve Developer Community
Jump to: navigation, search
Note.pngNote:If someone does make the page, remember that {{lang}} and {{entity}} are out of date templates, and you should use {{multipage}} and {{this is a}} instead.

Working on it

{{Lang|<page name>}} Adds the flags on the top right for language pages and adds this page to an appropriate language Category. For example, this page uses {{lang|Entity Article Template}}.
{{Distinguish|NPC_Barnacle}} Adds a note with a link to a page that this page should not be confused with.
{{entity|<entity class name>|type=<entity type>|game=<full game name>}} Creates a first sentence with a link to the game.
 
 Example {{entity|type=e0|ammo_57mm|game=Counter-Strike: Source}} 
   Results ammo_57mm is a point entity available in Counter-Strike: Source Counter-Strike: Source.
Tip.pngTip:If the entity is available in all Source games, don't use {{{game}}}. If available in multiple games, use {{{game1}}} (See the documentation of the template for details).
Note.pngNote:See the documentation of the template for the details of entity types.

Entity Description

The Barnacle from Half-Life: Alyx. A stationary enemy which hangs its tongue down to capture enemies and objects that make contact with the tongue. The barnacle retracts the object/entity upwards towards its origin and ‘bites’ to apply damage. The primary damage is inflicted at the body of the barnacle. This will detonate any explosive containers, potentially damaging nearby barnacles/entities including other explosive containers. If ammo/resin is caught, the barnacle will retain that until death.

FGDs (and by extension the Hammer properties window) are good sources for information on an entity's keyvalues, inputs, outputs, and flags, however FGDs often will not list everything available for an entity. Because of this, the wiki uses a mix of templates that roughly follow the engine's class hierarchy and ones that follow FGDs.

Also include Template:Code class:

 
 Example {{code class|CEntityClass|entityfile}} 
   Results
In code, it is represented by theCEntityClassclass, defined in theentityfilefile.

The entity's code class name can be found by searching LINK_ENTITY_TO_CLASS in the CPP file defining it.

Dedicated Console Variables and Commands (omit if none exist)

Console variables and commands can be found by searching ConVar and ConCommand in the CPP file that defines the entity. Note a parameter if any exist.

cvar_name
Description.
sk_barney_health <integer>
Barney's spawn health.

Flags (omit if none exist)

Tip.pngTip:See Category:Flag Templates for a list of available templates.

For each flag, write one of the following.

{{fl|<integer>|<flag name>}}

{{fl|<integer>|<flag name>|<description>}}

Which could look like this:

  •  [Integer value] : Flag Name
       Description if necessary.
  •  [16] : Start Silent
       The map will start without this sound playing. Enabled by default.

Keyvalues

Since every entity inherits CBaseEntity, all entity pages should have Template:KV BaseEntity if not more. The only exceptions are internal entities, which are removed during the compiling of a map and cannot receive I/O and most base keyvalues. This all applies to inputs and outputs as well.

Individual keyvalues are defined with Template:KV.

Tip.pngTip:See Category:Keyvalue Templates for a list of available templates.
Keyvalue Name (non-SmartEdit name) (???) <vartype>
A description of the keyvalue.
Render Amount (renderamt) (???) <integer>
Transparency amount, requires a Render Mode other than Normal. 0 is invisible, 255 is fully visible.

Inputs

Individual inputs (and outputs) are defined with Template:IO

Tip.pngTip:See Category:Input Templates for a list of available templates.


InputName <optional vartype>
A description of the input.
SetSpeed <float>
Set the speed of the train, as a ratio of max speed [0, 1]

Outputs

Tip.pngTip:See Category:Output Templates for a list of available templates.


OutputName
A description of the output.
OnPressed
Fired when the button is pressed.

See also

Note.pngNote:Add links to related articles, entities, or tutorials here.