Ensnaring Component and Bola Update (#9968)

This commit is contained in:
keronshb
2022-08-24 10:50:31 -04:00
committed by GitHub
parent 16be5184a4
commit cd78c5451d
29 changed files with 681 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
ensnare-component-try-free = You struggle to remove {$ensnare} that's ensnaring you!
ensnare-component-try-free-complete = You successfully free yourself from the {$ensnare}!
ensnare-component-try-free-fail = You fail to free yourself from the {$ensnare}!
ensnare-component-try-free-other = You start removing the {$ensnare} caught on {$user}!

View File

@@ -17,4 +17,5 @@ strip-verb-get-data-text = Strip
strippable-bound-user-interface-stripping-menu-title = {$ownerName}'s inventory
strippable-bound-user-interface-stripping-menu-handcuffs-button = Restraints
strippable-bound-user-interface-stripping-menu-ensnare-button = Leg Restraints
strippable-bound-user-interface-stripping-menu-obfuscate = Occupied

View File

@@ -9,6 +9,7 @@
- category: Internals
- alertType: Fire
- alertType: Handcuffed
- alertType: Ensnared
- category: Buckled
- alertType: Pulling
- category: Piloting
@@ -120,6 +121,13 @@
name: "[color=yellow]Handcuffed[/color]"
description: "You're [color=yellow]handcuffed[/color] and can't use your hands. If anyone drags you, you won't be able to resist."
- type: alert
id: Ensnared
onClick: !type:RemoveEnsnare { }
icons: [ /Textures/Interface/Alerts/ensnared.rsi/ensnared.png ]
name: "[color=yellow]Ensnared[/color]"
description: "You're [color=yellow]ensnared[/color] and is impairing your ability to move."
- type: alert
id: Buckled
category: Buckled

View File

@@ -280,9 +280,13 @@
normalState: Generic_mob_burning
alternateState: Standing
fireStackAlternateState: 3
- type: EnsnareableVisualizer
- type: CombatMode
- type: Climbing
- type: Cuffable
- type: Ensnareable
sprite: Objects/Misc/ensnare.rsi
state: icon
- type: CharacterInfo
- type: AnimationPlayer
- type: Buckle

View File

@@ -34,3 +34,11 @@
damage:
types:
Blunt: 5
- type: Ensnaring
freeTime: 2.0
breakoutTime: 3.5 #all bola should generally be fast to remove
walkSpeed: 0.7 #makeshift bola shouldn't slow too much
sprintSpeed: 0.7
canThrowTrigger: true
canMoveBreakout: true

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@@ -0,0 +1,14 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Ensnared alert created by Hyenh. Bear Trap sprite taken from Citadel Station at https://github.com/Citadel-Station-13/Citadel-Station-13/commit/3cfea7eb92246d311de8b531347795bc76d6dab6",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "ensnared"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 B

View File

@@ -0,0 +1,15 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from https://github.com/Citadel-Station-13/Citadel-Station-13/commit/2bf6d888bd89e614ec4d83fefa2130231e7ddc3d",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "icon",
"directions": 4
}
]
}