Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@
name: disabler
parent: [ WeaponDisablerPractice, BaseSecurityCommandContraband ]
id: WeaponDisabler
description: A self-defense weapon that exhausts organic targets, weakening them until they collapse.
description: A standard Nanotrasen weapon that shoots ionized gas at targets. It has a lethal mode and a non-lethal disabling mode.
components:
- type: Sprite
sprite: Objects/Weapons/Guns/Battery/disabler.rsi
Expand All @@ -508,6 +508,12 @@
- type: ProjectileBatteryAmmoProvider
proto: BulletDisabler
fireCost: 62.5
- type: BatteryWeaponFireModes
fireModes:
- proto: BulletDisabler
fireCost: 62.5
- proto: BulletDisablerLaser
fireCost: 62.5
- type: GuideHelp
guides:
- Security
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,12 @@
projectile:
shape:
!type:PhysShapeAabb
bounds: "-0.15,-0.3,0.15,0.3"
bounds: "-0.1,-0.1,0.1,0.1"
hard: false
mask:
- Opaque
- Impassable
- BulletImpassable
fly-by: *flybyfixture
- type: Ammo
- type: StaminaDamageOnCollide
Expand All @@ -266,6 +268,28 @@
collection: WeakHit
forceSound: true

- type: entity
name : laser bolt
id: BulletDisablerLaser
parent: BaseBullet
categories: [ HideSpawnMenu ]
components:
- type: Sprite
sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi
layers:
- state: heavylaser
shader: unshaded
- type: StaminaDamageOnCollide
damage: 0
- type: Projectile
impactEffect: BulletImpactEffectOrangeDisabler
damage:
types:
Heat: 17
soundHit:
collection: WeakHit
forceSound: true

- type: entity
name : disabler bolt practice
id: BulletDisablerPractice
Expand All @@ -288,10 +312,12 @@
projectile:
shape:
!type:PhysShapeAabb
bounds: "-0.15,-0.3,0.15,0.3"
bounds: "-0.1,-0.1,0.1,0.1"
hard: false
mask:
- Opaque
- Impassable
- BulletImpassable
fly-by: *flybyfixture
- type: Ammo
- type: StaminaDamageOnCollide
Expand Down
16 changes: 8 additions & 8 deletions Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@
ears: ClothingHeadsetSecurity
eyes: ClothingEyesGlassesSecurity
outerClothing: ClothingOuterArmorBasic
pocket1: WeaponPistolMk58
pocket2: MagazinePistol
pocket1: WeaponDisabler
pocket2: PowerCellMedium
inhand:
- FlashlightSeclite

Expand All @@ -245,8 +245,8 @@
ears: ClothingHeadsetSecurity
eyes: ClothingEyesGlassesSecurity
outerClothing: ClothingOuterArmorBasicSlim
pocket1: WeaponPistolMk58
pocket2: MagazinePistol
pocket1: WeaponDisabler
pocket2: PowerCellMedium
inhand:
- FlashlightSeclite

Expand All @@ -262,8 +262,8 @@
ears: ClothingHeadsetSecurity
eyes: ClothingEyesGlassesSecurity
outerClothing: ClothingOuterArmorBasic
pocket1: WeaponPistolMk58
pocket2: MagazinePistol
pocket1: WeaponDisabler
pocket2: PowerCellMedium
inhand:
- FlashlightSeclite

Expand All @@ -280,8 +280,8 @@
ears: ClothingHeadsetSecurity
eyes: ClothingEyesGlassesSecurity
outerClothing: ClothingOuterArmorBasicSlim
pocket1: WeaponPistolMk58
pocket2: MagazinePistol
pocket1: WeaponDisabler
pocket2: PowerCellMedium
inhand:
- FlashlightSeclite

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@
id: HoSPDA
gloves: ClothingHandsGlovesCombat
ears: ClothingHeadsetAltSecurity
pocket1: WeaponPistolMk58
pocket1: WeaponDisabler
storage:
back:
- Flash
- MagazinePistol
- PowerCellMedium

- type: chameleonOutfit
id: HeadOfSecurityChameleonOutfit
Expand Down
4 changes: 2 additions & 2 deletions Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
id: SecurityCadetPDA
ears: ClothingHeadsetSecurity
belt: ClothingBeltSecurityFilled
pocket1: WeaponPistolMk58
pocket1: WeaponDisabler
pocket2: BookSecurity
storage:
back:
- Flash
- MagazinePistol
- PowerCellMedium

- type: chameleonOutfit
id: SecurityCadetChameleonOutfit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
equipment:
eyes: ClothingEyesGlassesSecurity
ears: ClothingHeadsetSecurity
pocket1: WeaponPistolMk58
pocket1: WeaponDisabler
storage:
back:
- Flash
- MagazinePistol
- PowerCellMedium

- type: chameleonOutfit
id: SecurityOfficerChameleonOutfit
Expand Down
Loading