Type: Hazards and Debuffs
Level: 3 star
Pages: 1
Description: When activated this brain freezes the character, turns them white, highlights them blue then after 3 seconds plays a shattering effect and returns character to normal. It does not affect the health of the character. This is intended to be used as a weapon effect, so you would add this to an enemy or ally brain like this:
WHEN [enemies][objects closer then][20]
…WHEN DO [objvar:my enemy][equals][it]
…WHEN [not][objvar:my enemy][has brain][Debuff Freeze] DO [shoot][at][objvar:my enemy]
WHEN [started to][attack hit][ranged]
…WHEN [not][it][has brain][Debuff Freeze] DO [it][add brain][Debuff Freeze]
Designed to be used with the weapon brain Melee Weapon – Freeze
Kode
- WHEN [page entered]
- …WHEN DO [play sound][sound:Elemental Ice Freeze]
- …WHEN DO [numvar:enemy color intensity][equals][color intensity] // captures the default colors of the character so we can return to it later
- …WHEN DO [color intensity][equals][0] // turns character white
- …WHEN DO [numvar: enemy pace][equals][pace] // captures the pace so we can return to it later
- …WHEN DO [pace][equals][0] // freezes the character
- WHEN DO [highlight][blue]
- WHEN DO [play fx][fx: Sparkle]Releases the character
- WHEN [countdown timer][3]
- …WHEN DO [play sound][sound:Elemental Ice shatter]
- …WHEN DO [play fx][fx: Metal Debris][scale][0.7]
- …WHEN DO [color intensity][equals][numvar:enemy color intensity]
- …WHEN DO [pace][equals][numvar:enemy pace]
- …WHEN DO [remove brain][this brain]