61 lines
1.9 KiB
YAML
61 lines
1.9 KiB
YAML
# SPDX-FileCopyrightText: 2023 DrSmugleaf <DrSmugleaf@users.noreply.github.com>
|
|
# SPDX-FileCopyrightText: 2023 Kara <lunarautomaton6@gmail.com>
|
|
# SPDX-FileCopyrightText: 2023 metalgearsloth <comedian_vs_clown@hotmail.com>
|
|
# SPDX-FileCopyrightText: 2024 Leon Friedrich <60421075+ElectroJr@users.noreply.github.com>
|
|
# SPDX-FileCopyrightText: 2024 lzk <124214523+lzk228@users.noreply.github.com>
|
|
# SPDX-FileCopyrightText: 2024 nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com>
|
|
# SPDX-FileCopyrightText: 2024 slarticodefast <161409025+slarticodefast@users.noreply.github.com>
|
|
# SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# Actions added to mobs in crit.
|
|
- type: entity
|
|
abstract: true
|
|
parent: BaseMentalAction
|
|
id: BaseCritAction
|
|
components:
|
|
- type: Action
|
|
itemIconStyle: NoItem
|
|
|
|
- type: entity
|
|
parent: BaseCritAction
|
|
id: ActionCritSuccumb
|
|
name: Succumb
|
|
description: Accept your fate.
|
|
components:
|
|
- type: Action
|
|
startDelay: true
|
|
useDelay: 10
|
|
icon:
|
|
sprite: Mobs/Ghosts/ghost_human.rsi
|
|
state: icon
|
|
- type: InstantAction
|
|
event: !type:CritSuccumbEvent
|
|
|
|
- type: entity
|
|
parent: BaseCritAction
|
|
id: ActionCritFakeDeath
|
|
name: Fake Death
|
|
description: Pretend to take your final breath while staying alive.
|
|
components:
|
|
- type: Action
|
|
useDelay: 30
|
|
icon:
|
|
sprite: Interface/Actions/actions_crit.rsi
|
|
state: fakedeath
|
|
- type: InstantAction
|
|
event: !type:CritFakeDeathEvent
|
|
|
|
- type: entity
|
|
parent: ActionCritSuccumb # for use delay
|
|
id: ActionCritLastWords
|
|
name: Say Last Words
|
|
description: Whisper your last words to anyone nearby, and then succumb to your fate. You only have 30 characters to work with.
|
|
components:
|
|
- type: Action
|
|
icon:
|
|
sprite: Interface/Actions/actions_crit.rsi
|
|
state: lastwords
|
|
- type: InstantAction
|
|
event: !type:CritLastWordsEvent
|