Inserted SoundSpecifier where appropiate
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System;
|
||||
using Content.Shared.Sound;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Client.Animations;
|
||||
using Robust.Client.GameObjects;
|
||||
@@ -39,7 +40,7 @@ namespace Content.Client.Disposal.Visualizers
|
||||
private string? _stateFlush;
|
||||
|
||||
[DataField("flush_sound", required: true)]
|
||||
private string? _flushSound;
|
||||
private SoundSpecifier _flushSound = default!;
|
||||
|
||||
[DataField("flush_time", required: true)]
|
||||
private float _flushTime;
|
||||
@@ -58,9 +59,9 @@ namespace Content.Client.Disposal.Visualizers
|
||||
var sound = new AnimationTrackPlaySound();
|
||||
_flushAnimation.AnimationTracks.Add(sound);
|
||||
|
||||
if (_flushSound != null)
|
||||
if (_flushSound.TryGetSound(out var flushSound))
|
||||
{
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(_flushSound, 0));
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(flushSound, 0));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using System;
|
||||
using Content.Client.Wires;
|
||||
using Content.Client.Wires.Visualizers;
|
||||
using Content.Shared.Audio;
|
||||
using Content.Shared.Doors;
|
||||
using Content.Shared.Sound;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Client.Animations;
|
||||
using Robust.Client.GameObjects;
|
||||
@@ -18,13 +18,13 @@ namespace Content.Client.Doors
|
||||
private const string AnimationKey = "airlock_animation";
|
||||
|
||||
[DataField("open_sound", required: true)]
|
||||
private string _openSound = default!;
|
||||
private SoundSpecifier _openSound = default!;
|
||||
|
||||
[DataField("close_sound", required: true)]
|
||||
private string _closeSound = default!;
|
||||
private SoundSpecifier _closeSound = default!;
|
||||
|
||||
[DataField("deny_sound", required: true)]
|
||||
private string _denySound = default!;
|
||||
private SoundSpecifier _denySound = default!;
|
||||
|
||||
[DataField("animation_time")]
|
||||
private float _delay = 0.8f;
|
||||
@@ -55,9 +55,9 @@ namespace Content.Client.Doors
|
||||
var sound = new AnimationTrackPlaySound();
|
||||
CloseAnimation.AnimationTracks.Add(sound);
|
||||
|
||||
if (_closeSound != null)
|
||||
if (_closeSound.TryGetSound(out var closeSound))
|
||||
{
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(_closeSound, 0));
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(closeSound, 0));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,9 +81,9 @@ namespace Content.Client.Doors
|
||||
var sound = new AnimationTrackPlaySound();
|
||||
OpenAnimation.AnimationTracks.Add(sound);
|
||||
|
||||
if (_openSound != null)
|
||||
if (_openSound.TryGetSound(out var openSound))
|
||||
{
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(_openSound, 0));
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(openSound, 0));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,9 +97,9 @@ namespace Content.Client.Doors
|
||||
var sound = new AnimationTrackPlaySound();
|
||||
DenyAnimation.AnimationTracks.Add(sound);
|
||||
|
||||
if (_denySound != null)
|
||||
if (_denySound.TryGetSound(out var denySound))
|
||||
{
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(_denySound, 0, () => AudioHelpers.WithVariation(0.05f)));
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(denySound, 0, () => AudioHelpers.WithVariation(0.05f)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using Content.Shared.Light;
|
||||
using Content.Shared.Sound;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Client.Animations;
|
||||
using Robust.Client.GameObjects;
|
||||
@@ -17,7 +18,7 @@ namespace Content.Client.Light.Visualizers
|
||||
{
|
||||
[DataField("minBlinkingTime")] private float _minBlinkingTime = 0.5f;
|
||||
[DataField("maxBlinkingTime")] private float _maxBlinkingTime = 2;
|
||||
[DataField("blinkingSound")] private string? _blinkingSound;
|
||||
[DataField("blinkingSound")] private SoundSpecifier _blinkingSound = default!;
|
||||
|
||||
private bool _wasBlinking;
|
||||
|
||||
@@ -124,13 +125,13 @@ namespace Content.Client.Light.Visualizers
|
||||
}
|
||||
};
|
||||
|
||||
if (_blinkingSound != null)
|
||||
if (_blinkingSound.TryGetSound(out var blinkingSound))
|
||||
{
|
||||
blinkingAnim.AnimationTracks.Add(new AnimationTrackPlaySound()
|
||||
{
|
||||
KeyFrames =
|
||||
{
|
||||
new AnimationTrackPlaySound.KeyFrame(_blinkingSound, 0.5f)
|
||||
new AnimationTrackPlaySound.KeyFrame(blinkingSound, 0.5f)
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System;
|
||||
using Content.Shared.Sound;
|
||||
using Content.Shared.Trigger;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Client.Animations;
|
||||
@@ -15,7 +16,7 @@ namespace Content.Client.Trigger
|
||||
private const string AnimationKey = "priming_animation";
|
||||
|
||||
[DataField("countdown_sound", required: true)]
|
||||
private string? _countdownSound;
|
||||
private SoundSpecifier _countdownSound = default!;
|
||||
|
||||
private Animation PrimingAnimation = default!;
|
||||
|
||||
@@ -28,11 +29,11 @@ namespace Content.Client.Trigger
|
||||
flick.LayerKey = TriggerVisualLayers.Base;
|
||||
flick.KeyFrames.Add(new AnimationTrackSpriteFlick.KeyFrame("primed", 0f));
|
||||
|
||||
if (_countdownSound != null)
|
||||
if (_countdownSound.TryGetSound(out var countdownSound))
|
||||
{
|
||||
var sound = new AnimationTrackPlaySound();
|
||||
PrimingAnimation.AnimationTracks.Add(sound);
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(_countdownSound, 0));
|
||||
sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(countdownSound, 0));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,9 +26,8 @@ namespace Content.Server.Projectiles.Components
|
||||
public bool DeleteOnCollide { get; } = true;
|
||||
|
||||
// Get that juicy FPS hit sound
|
||||
[DataField("soundHit")] public string? SoundHit = default;
|
||||
private SoundSpecifier _soundHit = default!;
|
||||
[DataField("soundHitSpecies")] public string? SoundHitSpecies = default;
|
||||
[DataField("soundHit")] public SoundSpecifier SoundHit = default!;
|
||||
[DataField("soundHitSpecies")] public SoundSpecifier SoundHitSpecies = default!;
|
||||
|
||||
public bool DamagedEntity;
|
||||
|
||||
|
||||
@@ -33,13 +33,13 @@ namespace Content.Server.Projectiles
|
||||
var playerFilter = Filter.Pvs(coordinates);
|
||||
|
||||
if (!otherEntity.Deleted &&
|
||||
otherEntity.HasComponent<SharedBodyComponent>() && component.SoundHitSpecies != null)
|
||||
otherEntity.HasComponent<SharedBodyComponent>() && component.SoundHitSpecies.TryGetSound(out var soundHitSpecies))
|
||||
{
|
||||
SoundSystem.Play(playerFilter, component.SoundHitSpecies, coordinates);
|
||||
SoundSystem.Play(playerFilter, soundHitSpecies, coordinates);
|
||||
}
|
||||
else if (component.SoundHit != null)
|
||||
else if (component.SoundHit.TryGetSound(out var soundHit))
|
||||
{
|
||||
SoundSystem.Play(playerFilter, component.SoundHit, coordinates);
|
||||
SoundSystem.Play(playerFilter, soundHit, coordinates);
|
||||
}
|
||||
|
||||
if (!otherEntity.Deleted && otherEntity.TryGetComponent(out IDamageableComponent? damage))
|
||||
|
||||
@@ -499,8 +499,8 @@ entities:
|
||||
pos: 39.53893,-0.77325034
|
||||
parent: 853
|
||||
type: Transform
|
||||
- useSoundCollection: ''
|
||||
useSound: /Audio/Items/jaws_pry.ogg
|
||||
- useSound:
|
||||
path: /Audio/Items/jaws_pry.ogg
|
||||
type: Tool
|
||||
- uid: 54
|
||||
type: ClothingHandsGlovesLatex
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
sprite: Clothing/Back/Backpacks/backpack.rsi
|
||||
- type: Storage
|
||||
capacity: 100
|
||||
storageSoundCollection : storageRustle
|
||||
storageSoundCollection:
|
||||
collection: storageRustle
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBackpack
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
- back
|
||||
- type: Storage
|
||||
capacity: 100
|
||||
storageSoundCollection : storageRustle
|
||||
storageSoundCollection:
|
||||
collection: storageRustle
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBackpackDuffel
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
sprite: Clothing/Back/Satchels/satchel.rsi
|
||||
- type: Storage
|
||||
capacity: 100
|
||||
storageSoundCollection : storageRustle
|
||||
storageSoundCollection:
|
||||
collection: storageRustle
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBackpackSatchel
|
||||
|
||||
@@ -20,7 +20,8 @@
|
||||
- type: Clothing
|
||||
sprite: Clothing/Shoes/Specific/clown.rsi
|
||||
- type: FootstepModifier
|
||||
footstepSoundCollection: footstep_clown
|
||||
footstepSoundCollection:
|
||||
collection: footstep_clown
|
||||
|
||||
- type: entity
|
||||
parent: ClothingShoesBase
|
||||
|
||||
@@ -23,17 +23,25 @@
|
||||
tools:
|
||||
- behavior: Prying
|
||||
state: icon
|
||||
useSound: /Audio/Items/jaws_pry.ogg
|
||||
changeSound: /Audio/Items/change_jaws.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/jaws_pry.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_jaws.ogg
|
||||
- behavior: Cutting
|
||||
state: icon
|
||||
useSound: /Audio/Items/jaws_cut.ogg
|
||||
changeSound: /Audio/Items/change_jaws.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/jaws_cut.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_jaws.ogg
|
||||
- behavior: Screwing
|
||||
state: icon
|
||||
useSound: /Audio/Items/drill_use.ogg
|
||||
changeSound: /Audio/Items/change_drill.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/drill_use.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_drill.ogg
|
||||
- behavior: Anchoring
|
||||
state: icon
|
||||
useSound: /Audio/Items/drill_use.ogg
|
||||
changeSound: /Audio/Items/change_drill.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/drill_use.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_drill.ogg
|
||||
|
||||
@@ -8,7 +8,8 @@
|
||||
drawdepth: FloorObjects
|
||||
- type: SolutionContainer
|
||||
- type: Puddle
|
||||
spill_sound: /Audio/Effects/Fluids/splat.ogg
|
||||
spill_sound:
|
||||
path: /Audio/Effects/Fluids/splat.ogg
|
||||
recolor: true
|
||||
- type: Clickable
|
||||
- type: Slippery
|
||||
|
||||
@@ -34,7 +34,8 @@
|
||||
- type: MovedByPressure
|
||||
- type: Barotrauma
|
||||
- type: DamageOnHighSpeedImpact
|
||||
soundHit: /Audio/Effects/hit_kick.ogg
|
||||
soundHit:
|
||||
path: /Audio/Effects/hit_kick.ogg
|
||||
- type: Sprite
|
||||
noRot: true
|
||||
drawdepth: Mobs
|
||||
|
||||
@@ -35,7 +35,8 @@
|
||||
- type: MovedByPressure
|
||||
- type: Barotrauma
|
||||
- type: DamageOnHighSpeedImpact
|
||||
soundHit: /Audio/Effects/hit_kick.ogg
|
||||
soundHit:
|
||||
path: /Audio/Effects/hit_kick.ogg
|
||||
- type: Hunger
|
||||
- type: Thirst
|
||||
# Organs
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: GlassBreak
|
||||
- !type:SpillBehavior { }
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
|
||||
@@ -103,8 +103,8 @@
|
||||
# !type:DamageTrigger
|
||||
# damage: 10
|
||||
# behaviors:
|
||||
# - !type:PlaySoundCollectionBehavior
|
||||
# soundCollection: desecration
|
||||
# - !type:PlaySoundBehavior
|
||||
# collection:: desecration
|
||||
# - !type:SpawnEntitiesBehavior
|
||||
# spawn:
|
||||
# EggBoxBroken:
|
||||
|
||||
@@ -10,7 +10,8 @@
|
||||
description: A small plastic pack with condiments to put on your food.
|
||||
components:
|
||||
- type: Drink
|
||||
openSounds: packetOpenSounds
|
||||
openSounds:
|
||||
collection: packetOpenSounds
|
||||
- type: SolutionContainer
|
||||
maxVol: 10
|
||||
- type: SolutionTransfer
|
||||
@@ -309,7 +310,8 @@
|
||||
description: A thin glass bottle used to store condiments.
|
||||
components:
|
||||
- type: Drink
|
||||
openSounds: pop
|
||||
openSounds:
|
||||
collection: pop
|
||||
- type: SolutionContainer
|
||||
maxVol: 30
|
||||
- type: SolutionTransfer
|
||||
@@ -444,7 +446,8 @@
|
||||
description: A smaller glass bottle used to store condiments.
|
||||
components:
|
||||
- type: Drink
|
||||
openSounds: pop
|
||||
openSounds:
|
||||
collection: pop
|
||||
- type: SolutionContainer
|
||||
maxVol: 15
|
||||
- type: SolutionTransfer
|
||||
|
||||
@@ -27,8 +27,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: GlassBreak
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
FoodPlateTrash:
|
||||
@@ -66,8 +66,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: GlassBreak
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
FoodPlateSmallTrash:
|
||||
|
||||
@@ -55,8 +55,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 6
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: canOpenSounds
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: canOpenSounds
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
FoodTinPeachesOpen:
|
||||
@@ -103,8 +103,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 6
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: canOpenSounds
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: canOpenSounds
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
FoodTinPeachesMaintOpen:
|
||||
@@ -151,8 +151,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 6
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: canOpenSounds
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: canOpenSounds
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
FoodTinBeansOpen:
|
||||
@@ -201,8 +201,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 6
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: canOpenSounds
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: canOpenSounds
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
FoodTinMREOpen:
|
||||
|
||||
@@ -34,8 +34,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 1
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: desecration
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: desecration
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
Eggshells:
|
||||
|
||||
@@ -28,8 +28,10 @@
|
||||
maxVol: 50
|
||||
- type: SolutionTransfer
|
||||
- type: Drink
|
||||
openSounds: packetOpenSounds
|
||||
useSound: /Audio/Items/eating_1.ogg
|
||||
openSounds:
|
||||
collection: packetOpenSounds
|
||||
useSound:
|
||||
path: /Audio/Items/eating_1.ogg
|
||||
- type: Spillable
|
||||
|
||||
- type: entity
|
||||
@@ -56,8 +58,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 2
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: desecration
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: desecration
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
PuddleFlour:
|
||||
@@ -91,8 +93,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 2
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: desecration
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: desecration
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
PuddleFlour:
|
||||
|
||||
@@ -254,8 +254,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 1
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: desecration
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: desecration
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
PuddleTomato:
|
||||
|
||||
@@ -27,8 +27,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: GlassBreak
|
||||
- !type:SpillBehavior { }
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: GlassBreak
|
||||
- !type:SpillBehavior { }
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
|
||||
@@ -4,7 +4,8 @@
|
||||
abstract: true
|
||||
components:
|
||||
- type: Drink
|
||||
openSounds: bottleOpenSounds
|
||||
openSounds:
|
||||
collection: bottleOpenSounds
|
||||
- type: SolutionContainer
|
||||
maxVol: 100
|
||||
- type: SolutionTransfer
|
||||
@@ -27,8 +28,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: GlassBreak
|
||||
- !type:SpillBehavior { }
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
|
||||
@@ -4,7 +4,8 @@
|
||||
abstract: true
|
||||
components:
|
||||
- type: Drink
|
||||
openSounds: canOpenSounds
|
||||
openSounds:
|
||||
collection: canOpenSounds
|
||||
pressurized: true
|
||||
- type: SolutionContainer
|
||||
maxVol: 20
|
||||
|
||||
@@ -478,9 +478,12 @@
|
||||
- Single
|
||||
fireRate: 0.5
|
||||
capacity: 1
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/click.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/drawbow2.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/click.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/drawbow2.ogg
|
||||
|
||||
- type: entity
|
||||
parent: BaseItem
|
||||
@@ -517,9 +520,12 @@
|
||||
caliber: Cap
|
||||
capacity: 6
|
||||
autoCycle: true
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
|
||||
@@ -35,7 +35,8 @@
|
||||
- type: MeleeWeapon
|
||||
damage: 10
|
||||
damageType: Blunt
|
||||
hitSound: /Audio/Weapons/smash.ogg
|
||||
hitSound:
|
||||
path: /Audio/Weapons/smash.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: SprayVisualizer
|
||||
|
||||
@@ -110,7 +110,8 @@
|
||||
damage: 10
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/glass_break1.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/glass_break1.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
FloodlightBroken:
|
||||
@@ -141,7 +142,8 @@
|
||||
damage: 20
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -37,11 +37,16 @@
|
||||
brokenIconState: cuff-broken
|
||||
brokenName: broken cables
|
||||
brokenDesc: These cables are broken in several places and don't seem very useful.
|
||||
startCuffSound: /Audio/Items/Handcuffs/rope_start.ogg
|
||||
endCuffSound: /Audio/Items/Handcuffs/rope_end.ogg
|
||||
startUncuffSound: /Audio/Items/Handcuffs/rope_start.ogg
|
||||
endUncuffSound: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
startBreakoutSound: /Audio/Items/Handcuffs/rope_takeoff.ogg
|
||||
startCuffSound:
|
||||
path: /Audio/Items/Handcuffs/rope_start.ogg
|
||||
endCuffSound:
|
||||
path: /Audio/Items/Handcuffs/rope_end.ogg
|
||||
startUncuffSound:
|
||||
path: /Audio/Items/Handcuffs/rope_start.ogg
|
||||
endUncuffSound:
|
||||
path: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
startBreakoutSound:
|
||||
path: /Audio/Items/Handcuffs/rope_takeoff.ogg
|
||||
- type: Construction
|
||||
graph: makeshifthandcuffs
|
||||
node: cuffscable
|
||||
|
||||
@@ -13,7 +13,8 @@
|
||||
turnOnBehaviourID: turn_on
|
||||
fadeOutBehaviourID: fade_out
|
||||
# Sounds legit nuff
|
||||
litSound: /Audio/Items/Flare/flare_on.ogg
|
||||
litSound:
|
||||
path: /Audio/Items/Flare/flare_on.ogg
|
||||
loopedSound: /Audio/Items/Flare/flare_burn.ogg
|
||||
- type: Sprite
|
||||
sprite: Objects/Misc/torch.rsi
|
||||
|
||||
@@ -16,16 +16,16 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection: GlassBreak
|
||||
- !type:DoActsBehavior
|
||||
acts: [ "Breakage" ]
|
||||
- trigger:
|
||||
!type:DamageTrigger
|
||||
damage: 10
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection: GlassBreak
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
ShardGlass:
|
||||
|
||||
@@ -12,7 +12,8 @@
|
||||
capacity: 125
|
||||
quickInsert: true
|
||||
areaInsert: true
|
||||
storageSoundCollection: trashBagRustle
|
||||
storageSoundCollection:
|
||||
collection: trashBagRustle
|
||||
|
||||
- type: entity
|
||||
name: trash bag
|
||||
@@ -29,4 +30,5 @@
|
||||
capacity: 125
|
||||
quickInsert: true
|
||||
areaInsert: true
|
||||
storageSoundCollection: trashBagRustle
|
||||
storageSoundCollection:
|
||||
collection: trashBagRustle
|
||||
|
||||
@@ -28,8 +28,10 @@
|
||||
- type: BodyBagEntityStorage
|
||||
CanWeldShut: false
|
||||
Capacity: 1
|
||||
closeSound: /Audio/Misc/zip.ogg
|
||||
openSound: /Audio/Misc/zip.ogg
|
||||
closeSound:
|
||||
path: /Audio/Misc/zip.ogg
|
||||
openSound:
|
||||
path: /Audio/Misc/zip.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: StorageVisualizer
|
||||
|
||||
@@ -49,7 +49,8 @@
|
||||
sprite: Objects/Specific/Medical/Surgery/drill.rsi
|
||||
- type: ItemCooldown
|
||||
- type: MeleeWeapon
|
||||
hitSound: /Audio/Items/drill_hit.ogg
|
||||
hitSound:
|
||||
path: /Audio/Items/drill_hit.ogg
|
||||
|
||||
# Scalpel
|
||||
|
||||
@@ -72,7 +73,8 @@
|
||||
sprite: Objects/Specific/Medical/Surgery/scalpel.rsi
|
||||
- type: ItemCooldown
|
||||
- type: MeleeWeapon
|
||||
hitSound: /Audio/Weapons/bladeslice.ogg
|
||||
hitSound:
|
||||
path: /Audio/Weapons/bladeslice.ogg
|
||||
damage: 12
|
||||
|
||||
- type: entity
|
||||
@@ -140,12 +142,15 @@
|
||||
# tools:
|
||||
# - behavior: VesselCompression
|
||||
# state: hemostat
|
||||
# useSound: /Audio/Items/jaws_pry.ogg
|
||||
# changeSound: /Audio/Items/change_jaws.ogg
|
||||
# useSound:
|
||||
# path: /Audio/Items/jaws_pry.ogg
|
||||
# changeSound:
|
||||
# path: /Audio/Items/change_jaws.ogg
|
||||
# - behavior: Setting
|
||||
# state: setter
|
||||
# useSound:
|
||||
# changeSound: /Audio/Items/change_jaws.ogg
|
||||
# changeSound:
|
||||
# path: /Audio/Items/change_jaws.ogg
|
||||
|
||||
- type: entity
|
||||
name: hemostat
|
||||
@@ -209,7 +214,8 @@
|
||||
- type: Item
|
||||
HeldPrefix: improv
|
||||
- type: MeleeWeapon
|
||||
hitSound: /Audio/Weapons/bladeslice.ogg
|
||||
hitSound:
|
||||
path: /Audio/Weapons/bladeslice.ogg
|
||||
damage: 10
|
||||
|
||||
- type: entity
|
||||
@@ -227,7 +233,8 @@
|
||||
- type: Item
|
||||
HeldPrefix: electric
|
||||
- type: MeleeWeapon
|
||||
hitSound: /Audio/Items/drill_hit.ogg
|
||||
hitSound:
|
||||
path: /Audio/Items/drill_hit.ogg
|
||||
damage: 15
|
||||
|
||||
- type: entity
|
||||
@@ -245,5 +252,6 @@
|
||||
- type: Item
|
||||
HeldPrefix: advanced
|
||||
- type: MeleeWeapon
|
||||
hitSound: /Audio/Items/drill_hit.ogg
|
||||
hitSound:
|
||||
path: /Audio/Items/drill_hit.ogg
|
||||
damage: 20
|
||||
|
||||
@@ -41,8 +41,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection:: GlassBreak
|
||||
- !type:SpillBehavior { }
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
- type: Tool
|
||||
qualities:
|
||||
- Cutting
|
||||
useSound: /Audio/Items/wirecutter.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/wirecutter.ogg
|
||||
speed: 0.05
|
||||
- type: Item
|
||||
sprite: Objects/Tools/Cowtools/haycutters.rsi
|
||||
@@ -55,7 +56,8 @@
|
||||
- type: Tool
|
||||
qualities:
|
||||
- Anchoring
|
||||
useSound: /Audio/Items/ratchet.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/ratchet.ogg
|
||||
speed: 0.05
|
||||
|
||||
- type: entity
|
||||
@@ -74,7 +76,8 @@
|
||||
- type: Tool
|
||||
qualities:
|
||||
- Prying
|
||||
useSound: /Audio/Items/crowbar.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/crowbar.ogg
|
||||
speed: 0.05
|
||||
- type: TilePrying
|
||||
|
||||
|
||||
@@ -13,7 +13,8 @@
|
||||
iconStateSpent: flare_spent
|
||||
turnOnBehaviourID: turn_on
|
||||
fadeOutBehaviourID: fade_out
|
||||
litSound: /Audio/Items/Flare/flare_on.ogg
|
||||
litSound:
|
||||
path: /Audio/Items/Flare/flare_on.ogg
|
||||
loopedSound: /Audio/Items/Flare/flare_burn.ogg
|
||||
- type: Sprite
|
||||
sprite: Objects/Misc/flare.rsi
|
||||
|
||||
@@ -13,7 +13,8 @@
|
||||
iconStateSpent: glowstick_unlit
|
||||
turnOnBehaviourID: turn_on
|
||||
fadeOutBehaviourID: fade_out
|
||||
litSound: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
litSound:
|
||||
path: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
- type: Sprite
|
||||
sprite: Objects/Misc/glowstick.rsi
|
||||
layers:
|
||||
@@ -74,7 +75,8 @@
|
||||
iconStateSpent: glowstick_unlit
|
||||
turnOnBehaviourID: turn_on
|
||||
fadeOutBehaviourID: fade_out
|
||||
litSound: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
litSound:
|
||||
path: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
- type: Sprite
|
||||
sprite: Objects/Misc/glowstick.rsi
|
||||
layers:
|
||||
@@ -109,7 +111,8 @@
|
||||
iconStateSpent: glowstick_unlit
|
||||
turnOnBehaviourID: turn_on
|
||||
fadeOutBehaviourID: fade_out
|
||||
litSound: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
litSound:
|
||||
path: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
- type: Sprite
|
||||
sprite: Objects/Misc/glowstick.rsi
|
||||
layers:
|
||||
@@ -144,7 +147,8 @@
|
||||
iconStateSpent: glowstick_unlit
|
||||
turnOnBehaviourID: turn_on
|
||||
fadeOutBehaviourID: fade_out
|
||||
litSound: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
litSound:
|
||||
path: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
- type: Sprite
|
||||
sprite: Objects/Misc/glowstick.rsi
|
||||
layers:
|
||||
@@ -179,7 +183,8 @@
|
||||
iconStateSpent: glowstick_unlit
|
||||
turnOnBehaviourID: turn_on
|
||||
fadeOutBehaviourID: fade_out
|
||||
litSound: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
litSound:
|
||||
path: /Audio/Items/Handcuffs/rope_breakout.ogg
|
||||
- type: Sprite
|
||||
sprite: Objects/Misc/glowstick.rsi
|
||||
layers:
|
||||
|
||||
@@ -25,12 +25,16 @@
|
||||
tools:
|
||||
- behavior: Prying
|
||||
state: jaws_pry
|
||||
useSound: /Audio/Items/jaws_pry.ogg
|
||||
changeSound: /Audio/Items/change_jaws.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/jaws_pry.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_jaws.ogg
|
||||
- behavior: Cutting
|
||||
state: jaws_cutter
|
||||
useSound: /Audio/Items/jaws_cut.ogg
|
||||
changeSound: /Audio/Items/change_jaws.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/jaws_cut.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_jaws.ogg
|
||||
|
||||
- type: entity
|
||||
name: syndicate jaws of life
|
||||
|
||||
@@ -24,7 +24,8 @@
|
||||
sprite: Objects/Tools/matches.rsi
|
||||
- type: Matchstick
|
||||
duration: 10
|
||||
igniteSound: /Audio/Items/match_strike.ogg
|
||||
igniteSound:
|
||||
path: /Audio/Items/match_strike.ogg
|
||||
- type: PointLight
|
||||
enabled: false
|
||||
radius: 1.1
|
||||
|
||||
@@ -10,7 +10,8 @@
|
||||
- type: ItemCooldown
|
||||
- type: MeleeWeapon
|
||||
damage: 10
|
||||
hitSound: "/Audio/Weapons/smash.ogg"
|
||||
hitSound:
|
||||
path: "/Audio/Weapons/smash.ogg"
|
||||
|
||||
- type: entity
|
||||
name: emergency toolbox
|
||||
|
||||
@@ -18,7 +18,8 @@
|
||||
- type: Tool
|
||||
qualities:
|
||||
- Cutting
|
||||
useSound: /Audio/Items/wirecutter.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/wirecutter.ogg
|
||||
- type: RandomSpriteColor
|
||||
state: cutters
|
||||
colors:
|
||||
@@ -85,7 +86,8 @@
|
||||
- type: Tool
|
||||
qualities:
|
||||
- Anchoring
|
||||
useSound: /Audio/Items/ratchet.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/ratchet.ogg
|
||||
|
||||
- type: entity
|
||||
name: crowbar
|
||||
@@ -108,7 +110,8 @@
|
||||
- type: Tool
|
||||
qualities:
|
||||
- Prying
|
||||
useSound: /Audio/Items/crowbar.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/crowbar.ogg
|
||||
- type: TilePrying
|
||||
|
||||
- type: entity
|
||||
@@ -132,7 +135,8 @@
|
||||
- type: Tool
|
||||
qualities:
|
||||
- Prying
|
||||
useSound: /Audio/Items/crowbar.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/crowbar.ogg
|
||||
- type: TilePrying
|
||||
|
||||
- type: entity
|
||||
@@ -181,12 +185,16 @@
|
||||
tools:
|
||||
- behavior: Screwing
|
||||
state: drill_screw
|
||||
useSound: /Audio/Items/drill_use.ogg
|
||||
changeSound: /Audio/Items/change_drill.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/drill_use.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_drill.ogg
|
||||
- behavior: Anchoring
|
||||
state: drill_bolt
|
||||
useSound: /Audio/Items/drill_use.ogg
|
||||
changeSound: /Audio/Items/change_drill.ogg
|
||||
useSound:
|
||||
path: /Audio/Items/drill_use.ogg
|
||||
changeSound:
|
||||
path: /Audio/Items/change_drill.ogg
|
||||
|
||||
- type: entity
|
||||
name: RCD
|
||||
|
||||
@@ -8,7 +8,8 @@
|
||||
caliber: Shotgun
|
||||
ammoSpread: 40
|
||||
projectilesFired: 6
|
||||
soundCollectionEject: ShellEject
|
||||
soundCollectionEject:
|
||||
collection: ShellEject
|
||||
- type: Sprite
|
||||
netsync: false
|
||||
noRot: false
|
||||
|
||||
@@ -29,7 +29,8 @@
|
||||
powerCellPrototype: PowerCellSmallStandard
|
||||
powerCellRemovable: true
|
||||
ammoPrototype: RedLaser
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/laser.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/laser.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -68,7 +69,8 @@
|
||||
powerCellPrototype: PowerCellSmallSuper
|
||||
powerCellRemovable: true
|
||||
ammoPrototype: RedHeavyLaser
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -109,7 +111,8 @@
|
||||
powerCellRemovable: true
|
||||
fireCost: 600
|
||||
ammoPrototype: XrayLaser
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/laser3.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/laser3.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -152,7 +155,8 @@
|
||||
powerCellPrototype: PowerCellSmallStandard
|
||||
powerCellRemovable: false
|
||||
ammoPrototype: BulletTaser
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/taser.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/taser.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -191,7 +195,8 @@
|
||||
powerCellPrototype: PowerCellMediumStandard
|
||||
powerCellRemovable: true
|
||||
ammoPrototype: RedLaser
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/laser.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/laser.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
|
||||
@@ -35,7 +35,8 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: TimerTriggerVisualizer
|
||||
countdown_sound: /Audio/Effects/countdown.ogg
|
||||
countdown_sound:
|
||||
path: /Audio/Effects/countdown.ogg
|
||||
|
||||
- type: entity
|
||||
name: flashbang
|
||||
@@ -74,7 +75,8 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: TimerTriggerVisualizer
|
||||
countdown_sound: /Audio/Effects/countdown.ogg
|
||||
countdown_sound:
|
||||
path: /Audio/Effects/countdown.ogg
|
||||
|
||||
- type: entity
|
||||
name: Syndicate minibomb
|
||||
@@ -109,7 +111,8 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: TimerTriggerVisualizer
|
||||
countdown_sound: /Audio/Effects/countdown.ogg
|
||||
countdown_sound:
|
||||
path: /Audio/Effects/countdown.ogg
|
||||
|
||||
- type: entity
|
||||
name: the nuclear option
|
||||
@@ -143,4 +146,5 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: TimerTriggerVisualizer
|
||||
countdown_sound: /Audio/Effects/countdown.ogg
|
||||
countdown_sound:
|
||||
path: /Audio/Effects/countdown.ogg
|
||||
|
||||
@@ -24,14 +24,22 @@
|
||||
angleIncrease: 10
|
||||
angleDecay: 60
|
||||
magNeedsOpenBolt: true
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/lmg.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/lmg_empty.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/lmg_cock.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundAutoEject: /Audio/Weapons/Guns/EmptyAlarm/lmg_empty_alarm.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/lmg_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/lmg_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/lmg.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/lmg_cock.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundAutoEject:
|
||||
path: /Audio/Weapons/Guns/EmptyAlarm/lmg_empty_alarm.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/lmg_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/lmg_magout.ogg
|
||||
|
||||
- type: entity
|
||||
name: L6 SAW
|
||||
|
||||
@@ -35,9 +35,12 @@
|
||||
fillPrototype: GrenadeFrag
|
||||
fireRate: 1
|
||||
capacity: 3
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/grenade_launcher.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/grenade_launcher.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -67,9 +70,12 @@
|
||||
fillPrototype: RocketAmmo
|
||||
fireRate: 0.5
|
||||
capacity: 1
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/rpgfire.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/rpgfire.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -99,6 +105,9 @@
|
||||
fillPrototype: FoodPieBananaCream
|
||||
fireRate: 5
|
||||
capacity: 5
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot: /Audio/Effects/bang.ogg
|
||||
soundInsert: /Audio/Items/bikehorn.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Effects/bang.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Items/bikehorn.ogg
|
||||
|
||||
@@ -31,13 +31,20 @@
|
||||
angleIncrease: 10
|
||||
angleDecay: 60
|
||||
magFillPrototype: MagazinePistol
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/pistol.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/pistol_cock.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/pistol_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/pistol_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/pistol.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/pistol_cock.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/pistol_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/pistol_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -160,13 +167,20 @@
|
||||
angleIncrease: 10
|
||||
angleDecay: 60
|
||||
magFillPrototype: MagazinePistol
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/pistol.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/pistol_cock.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/pistol_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/pistol_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/pistol.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/pistol_cock.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/pistol_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/pistol_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -201,11 +215,16 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 20
|
||||
angleDecay: 60
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/hpistol.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/hpistol_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/hpistol_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/hpistol_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/hpistol.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/hpistol_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/hpistol_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/hpistol_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -245,7 +264,8 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 20
|
||||
angleDecay: 60
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/silenced.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/silenced.ogg
|
||||
|
||||
- type: entity
|
||||
name: mk 58
|
||||
|
||||
@@ -25,7 +25,8 @@
|
||||
linearDamping: 0
|
||||
angularDamping: 0
|
||||
- type: Projectile
|
||||
soundHit: /Audio/Weapons/Guns/Hits/bullet_hit.ogg
|
||||
soundHit:
|
||||
path: /Audio/Weapons/Guns/Hits/bullet_hit.ogg
|
||||
damages:
|
||||
Piercing: 20
|
||||
|
||||
@@ -36,7 +37,8 @@
|
||||
abstract: true
|
||||
components:
|
||||
- type: Projectile
|
||||
soundHit: /Audio/Weapons/Guns/Hits/snap.ogg
|
||||
soundHit:
|
||||
path: /Audio/Weapons/Guns/Hits/snap.ogg
|
||||
damages:
|
||||
Piercing: 10
|
||||
- type: FlashOnTrigger
|
||||
@@ -74,7 +76,8 @@
|
||||
abstract: true
|
||||
components:
|
||||
- type: Projectile
|
||||
soundHit: /Audio/Weapons/Guns/Hits/snap.ogg
|
||||
soundHit:
|
||||
path: /Audio/Weapons/Guns/Hits/snap.ogg
|
||||
damages:
|
||||
Blunt: 3
|
||||
- type: StunOnCollide
|
||||
@@ -139,7 +142,8 @@
|
||||
mask:
|
||||
- Opaque
|
||||
- type: Projectile
|
||||
soundHit: /Audio/Weapons/Guns/Hits/bullet_hit.ogg
|
||||
soundHit:
|
||||
path: /Audio/Weapons/Guns/Hits/bullet_hit.ogg
|
||||
damages:
|
||||
Heat: 20
|
||||
- type: Tag
|
||||
@@ -184,7 +188,8 @@
|
||||
state: grenade
|
||||
- type: Projectile
|
||||
deleteOnCollide: false
|
||||
soundHit: /Audio/Effects/gen_hit.ogg
|
||||
soundHit:
|
||||
path: /Audio/Effects/gen_hit.ogg
|
||||
- type: StunOnCollide
|
||||
stunAmount: 8
|
||||
knockdownAmount: 8
|
||||
@@ -222,7 +227,8 @@
|
||||
state: grenade
|
||||
- type: Projectile
|
||||
deleteOnCollide: false
|
||||
soundHit: /Audio/Effects/flash_bang.ogg
|
||||
soundHit:
|
||||
path: /Audio/Effects/flash_bang.ogg
|
||||
- type: FlashOnTrigger
|
||||
range: 7
|
||||
- type: SoundOnTrigger
|
||||
@@ -265,7 +271,8 @@
|
||||
state: foamdart
|
||||
- type: Projectile
|
||||
deleteOnCollide: true
|
||||
soundHit: /Audio/Guns/Hits/snap.ogg
|
||||
soundHit:
|
||||
path: /Audio/Guns/Hits/snap.ogg
|
||||
damages:
|
||||
Blunt: 2
|
||||
|
||||
|
||||
@@ -37,9 +37,12 @@
|
||||
caliber: Magnum
|
||||
capacity: 5
|
||||
autoCycle: true
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -67,10 +70,14 @@
|
||||
fillPrototype: CartridgeMagnum
|
||||
caliber: Magnum
|
||||
capacity: 7
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEject: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
|
||||
- type: entity
|
||||
name: Mateba
|
||||
@@ -91,7 +98,11 @@
|
||||
fillPrototype: CartridgeMagnum
|
||||
caliber: Magnum
|
||||
capacity: 7
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEject: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/revolver.ogg
|
||||
soundEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg
|
||||
|
||||
@@ -22,13 +22,20 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 20
|
||||
angleDecay: 90
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/batrifle.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/sf_rifle_cock.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/batrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/batrifle.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/sf_rifle_cock.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/batrifle_magout.ogg
|
||||
|
||||
- type: entity
|
||||
name: AKMS
|
||||
@@ -58,10 +65,14 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 20
|
||||
angleDecay: 90
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/rifle2.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/rifle2.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -97,10 +108,14 @@
|
||||
maxAngle: 60
|
||||
angleIncrease: 15
|
||||
angleDecay: 60
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/rifle2.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/rifle2.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -139,10 +154,14 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 15
|
||||
angleDecay: 60
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/batrifle.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/batrifle_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/batrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/batrifle.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/batrifle_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/batrifle_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -180,10 +199,14 @@
|
||||
maxAngle: 60
|
||||
angleIncrease: 10
|
||||
angleDecay: 60
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/m41.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/m41_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/m41_reload.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/m41.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/m41_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/m41_reload.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
@@ -221,10 +244,14 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 15
|
||||
angleDecay: 60
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/ltrifle.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/ltrifle.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -304,10 +331,14 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 15
|
||||
angleDecay: 60
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/ltrifle.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/ltrifle.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -345,10 +376,14 @@
|
||||
maxAngle: 25
|
||||
angleIncrease: 15
|
||||
angleDecay: 25
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/rifle2.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/rifle2.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: MagVisualizer
|
||||
|
||||
@@ -25,13 +25,20 @@
|
||||
angleIncrease: 10
|
||||
angleDecay: 60
|
||||
magFillPrototype: MagazinePistolSmg
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/smg.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/smg_cock.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/smg_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/smg_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/smg.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/smg_cock.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/smg_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/smg_magout.ogg
|
||||
|
||||
- type: entity
|
||||
name: Atreides
|
||||
|
||||
@@ -24,9 +24,12 @@
|
||||
maxAngle: 60
|
||||
angleIncrease: 30
|
||||
angleDecay: 30
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/shotgun_insert.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/shotgun_insert.ogg
|
||||
|
||||
- type: entity
|
||||
name: Bojevic
|
||||
@@ -58,13 +61,20 @@
|
||||
magazineTypes:
|
||||
- Rifle
|
||||
magFillPrototype: MagazineShotgun
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack: /Audio/Weapons/Guns/Cock/smg_cock.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert: /Audio/Weapons/Guns/MagIn/smg_magin.ogg
|
||||
soundMagEject: /Audio/Weapons/Guns/MagOut/smg_magout.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundRack:
|
||||
path: /Audio/Weapons/Guns/Cock/smg_cock.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg
|
||||
soundMagInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/smg_magin.ogg
|
||||
soundMagEject:
|
||||
path: /Audio/Weapons/Guns/MagOut/smg_magout.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -106,11 +116,16 @@
|
||||
angleIncrease: 30
|
||||
angleDecay: 30
|
||||
ammoSpreadRatio: 0.7
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/shotgun_insert.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Cock/shotgun_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Cock/shotgun_close.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/shotgun_insert.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Cock/shotgun_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Cock/shotgun_close.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
@@ -228,11 +243,16 @@
|
||||
maxAngle: 90
|
||||
angleIncrease: 45
|
||||
angleDecay: 30
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/shotgun_insert.ogg
|
||||
soundBoltOpen: /Audio/Weapons/Guns/Cock/shotgun_open.ogg
|
||||
soundBoltClosed: /Audio/Weapons/Guns/Cock/shotgun_close.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/shotgun_insert.ogg
|
||||
soundBoltOpen:
|
||||
path: /Audio/Weapons/Guns/Cock/shotgun_open.ogg
|
||||
soundBoltClosed:
|
||||
path: /Audio/Weapons/Guns/Cock/shotgun_close.ogg
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: BarrelBoltVisualizer
|
||||
|
||||
@@ -26,9 +26,12 @@
|
||||
maxAngle: 45
|
||||
angleIncrease: 20
|
||||
angleDecay: 15
|
||||
soundGunshot: /Audio/Weapons/Guns/Gunshots/sniper.ogg
|
||||
soundEmpty: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert: /Audio/Weapons/Guns/MagIn/bullet_insert.ogg
|
||||
soundGunshot:
|
||||
path: /Audio/Weapons/Guns/Gunshots/sniper.ogg
|
||||
soundEmpty:
|
||||
path: /Audio/Weapons/Guns/Empty/empty.ogg
|
||||
soundInsert:
|
||||
path: /Audio/Weapons/Guns/MagIn/bullet_insert.ogg
|
||||
|
||||
- type: entity
|
||||
name: Kardashev-Mosin
|
||||
|
||||
@@ -8,7 +8,8 @@
|
||||
- Knife
|
||||
- type: ItemCooldown
|
||||
- type: MeleeWeapon
|
||||
hitSound: /Audio/Weapons/bladeslice.ogg
|
||||
hitSound:
|
||||
path: /Audio/Weapons/bladeslice.ogg
|
||||
damage: 12
|
||||
- type: Sprite
|
||||
netsync: false
|
||||
|
||||
@@ -39,4 +39,5 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
|
||||
@@ -42,9 +42,12 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: AirlockVisualizer
|
||||
open_sound: /Audio/Machines/airlock_open.ogg
|
||||
close_sound: /Audio/Machines/airlock_close.ogg
|
||||
deny_sound: /Audio/Machines/airlock_deny.ogg
|
||||
open_sound:
|
||||
path: /Audio/Machines/airlock_open.ogg
|
||||
close_sound:
|
||||
path: /Audio/Machines/airlock_close.ogg
|
||||
deny_sound:
|
||||
path: /Audio/Machines/airlock_deny.ogg
|
||||
- type: WiresVisualizer
|
||||
- type: ApcPowerReceiver
|
||||
- type: Wires
|
||||
|
||||
@@ -11,7 +11,10 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: AirlockVisualizer
|
||||
open_sound: /Audio/Machines/airlock_ext_open.ogg
|
||||
close_sound: /Audio/Machines/airlock_ext_close.ogg
|
||||
deny_sound: /Audio/Machines/airlock_deny.ogg
|
||||
open_sound:
|
||||
path: /Audio/Machines/airlock_ext_open.ogg
|
||||
close_sound:
|
||||
path: /Audio/Machines/airlock_ext_close.ogg
|
||||
deny_sound:
|
||||
path: /Audio/Machines/airlock_deny.ogg
|
||||
- type: WiresVisualizer
|
||||
|
||||
@@ -58,9 +58,12 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: AirlockVisualizer
|
||||
open_sound: /Audio/Machines/airlock_open.ogg
|
||||
close_sound: /Audio/Machines/airlock_close.ogg
|
||||
deny_sound: /Audio/Machines/airlock_deny.ogg
|
||||
open_sound:
|
||||
path: /Audio/Machines/airlock_open.ogg
|
||||
close_sound:
|
||||
path: /Audio/Machines/airlock_close.ogg
|
||||
deny_sound:
|
||||
path: /Audio/Machines/airlock_deny.ogg
|
||||
animation_time: 0.6
|
||||
- type: WiresVisualizer
|
||||
- type: Wires
|
||||
|
||||
@@ -17,7 +17,8 @@
|
||||
damage: 1
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
PartRodMetal1:
|
||||
@@ -48,7 +49,8 @@
|
||||
damage: 15
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
@@ -77,7 +79,8 @@
|
||||
damage: 1
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
@@ -109,7 +112,8 @@
|
||||
damage: 15
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
@@ -135,7 +139,8 @@
|
||||
damage: 75
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
@@ -164,7 +169,8 @@
|
||||
damage: 5
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/glass_break2.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/glass_break2.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
ShardGlass:
|
||||
@@ -193,7 +199,8 @@
|
||||
damage: 20
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/glass_break2.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/glass_break2.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
ShardGlass:
|
||||
@@ -225,7 +232,8 @@
|
||||
damage: 15
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/woodhit.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/woodhit.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
MaterialWoodPlank:
|
||||
@@ -254,7 +262,8 @@
|
||||
damage: 15
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/woodhit.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/woodhit.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
MaterialWoodPlank:
|
||||
@@ -286,7 +295,8 @@
|
||||
damage: 50
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/picaxe2.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/picaxe2.ogg
|
||||
- !type:DoActsBehavior
|
||||
acts: [ "Destruction" ]
|
||||
|
||||
|
||||
@@ -27,7 +27,8 @@
|
||||
damage: 30
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/woodhit.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/woodhit.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
MaterialWoodPlank:
|
||||
|
||||
@@ -34,7 +34,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/plant_rustle.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/plant_rustle.ogg
|
||||
|
||||
- type: entity
|
||||
id: PottedPlantRandom
|
||||
|
||||
@@ -34,7 +34,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
|
||||
- type: entity
|
||||
name: chair
|
||||
@@ -193,7 +194,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/woodhit.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/woodhit.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
MaterialWoodPlank:
|
||||
|
||||
@@ -35,8 +35,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 100
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection: GlassBreak
|
||||
- !type:ChangeConstructionNodeBehavior
|
||||
node: monitorBroken
|
||||
- !type:DoActsBehavior
|
||||
@@ -61,7 +61,8 @@
|
||||
damage: 50
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -28,7 +28,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
|
||||
- type: entity
|
||||
abstract: true
|
||||
|
||||
@@ -21,7 +21,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
@@ -60,7 +61,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -40,7 +40,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
@@ -57,7 +58,8 @@
|
||||
overlay_full: dispover-full
|
||||
overlay_engaged: dispover-handle
|
||||
state_flush: disposal-flush
|
||||
flush_sound: /Audio/Machines/disposalflush.ogg
|
||||
flush_sound:
|
||||
path: /Audio/Machines/disposalflush.ogg
|
||||
flush_time: 2
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
|
||||
@@ -11,7 +11,8 @@
|
||||
shader: unshaded
|
||||
- type: Projectile
|
||||
deleteOnCollide: false
|
||||
soundHit: /Audio/Weapons/Guns/Hits/bullet_hit.ogg
|
||||
soundHit:
|
||||
path: /Audio/Weapons/Guns/Hits/bullet_hit.ogg
|
||||
damages:
|
||||
Radiation: 10
|
||||
- type: Physics
|
||||
|
||||
@@ -52,7 +52,8 @@
|
||||
damage: 200
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -32,7 +32,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
GasCanisterBrokenBase:
|
||||
|
||||
@@ -23,7 +23,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
StorageCanisterBroken:
|
||||
@@ -55,7 +56,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
AirCanisterBroken:
|
||||
@@ -84,7 +86,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
OxygenCanisterBroken:
|
||||
@@ -114,7 +117,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
NitrogenCanisterBroken:
|
||||
@@ -145,7 +149,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
CarbonDioxideCanisterBroken:
|
||||
@@ -177,7 +182,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
PlasmaCanisterBroken:
|
||||
@@ -210,7 +216,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
TritiumCanisterBroken:
|
||||
@@ -244,7 +251,8 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
WaterVaporCanisterBroken:
|
||||
@@ -269,7 +277,8 @@
|
||||
damage: 100
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetPlasteel1:
|
||||
|
||||
@@ -28,7 +28,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
map: ["enum.StorageVisualLayers.Welded"]
|
||||
- type: MovedByPressure
|
||||
- type: DamageOnHighSpeedImpact
|
||||
soundHit: /Audio/Effects/bang.ogg
|
||||
soundHit:
|
||||
path: /Audio/Effects/bang.ogg
|
||||
- type: InteractionOutline
|
||||
- type: Physics
|
||||
fixtures:
|
||||
@@ -46,7 +47,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -538,7 +538,8 @@
|
||||
damage: 15
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/woodhit.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/woodhit.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
MaterialWoodPlank1:
|
||||
|
||||
@@ -36,8 +36,10 @@
|
||||
CanWeldShut: false
|
||||
IsCollidableWhenOpen: true
|
||||
Capacity: 1
|
||||
closeSound: /Audio/Items/deconstruct.ogg
|
||||
openSound: /Audio/Items/deconstruct.ogg
|
||||
closeSound:
|
||||
path: /Audio/Items/deconstruct.ogg
|
||||
openSound:
|
||||
path: /Audio/Items/deconstruct.ogg
|
||||
trayPrototype: MorgueTray
|
||||
- type: Appearance
|
||||
visuals:
|
||||
@@ -101,8 +103,10 @@
|
||||
CanWeldShut: false
|
||||
IsCollidableWhenOpen: true
|
||||
Capacity: 1
|
||||
closeSound: /Audio/Items/deconstruct.ogg
|
||||
openSound: /Audio/Items/deconstruct.ogg
|
||||
closeSound:
|
||||
path: /Audio/Items/deconstruct.ogg
|
||||
openSound:
|
||||
path: /Audio/Items/deconstruct.ogg
|
||||
trayPrototype: CrematoriumTray
|
||||
doSoulBeep: false
|
||||
- type: Appearance
|
||||
|
||||
@@ -34,7 +34,8 @@
|
||||
damage: 30
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -66,7 +66,8 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: PoweredLightVisualizer
|
||||
blinkingSound: "/Audio/Machines/light_tube_on.ogg"
|
||||
blinkingSound:
|
||||
path: "/Audio/Machines/light_tube_on.ogg"
|
||||
|
||||
- type: entity
|
||||
id: PoweredlightEmpty
|
||||
|
||||
@@ -431,12 +431,14 @@
|
||||
damage: 300
|
||||
behaviors:
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:ChangeConstructionNodeBehavior
|
||||
node: girder
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
destroySound: /Audio/Effects/metalbreak.ogg
|
||||
destroySound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- type: IconSmooth
|
||||
key: walls
|
||||
base: solid
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 200
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection: GlassBreak
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
ShardGlassPlasma:
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 150
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection: GlassBreak
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
ShardGlassReinforced:
|
||||
|
||||
@@ -38,8 +38,8 @@
|
||||
!type:DamageTrigger
|
||||
damage: 15
|
||||
behaviors:
|
||||
- !type:PlaySoundCollectionBehavior
|
||||
soundCollection: GlassBreak
|
||||
- !type:PlaySoundBehavior
|
||||
collection: GlassBreak
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
ShardGlass:
|
||||
|
||||
@@ -25,7 +25,8 @@
|
||||
key: catwalk
|
||||
base: catwalk_
|
||||
- type: FootstepModifier
|
||||
footstepSoundCollection: footstep_catwalk
|
||||
footstepSoundCollection:
|
||||
collection: footstep_catwalk
|
||||
- type: Construction
|
||||
graph: Catwalk
|
||||
node: Catwalk
|
||||
|
||||
@@ -21,7 +21,8 @@
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- !type:PlaySoundBehavior
|
||||
sound: /Audio/Effects/metalbreak.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/metalbreak.ogg
|
||||
- !type:SpawnEntitiesBehavior
|
||||
spawn:
|
||||
SheetSteel1:
|
||||
|
||||
@@ -90,7 +90,8 @@
|
||||
removeDelay: 0.5
|
||||
diluteReagents: false
|
||||
prototypeId: Smoke
|
||||
sound: /Audio/Effects/smoke.ogg
|
||||
sound:
|
||||
path: /Audio/Effects/smoke.ogg
|
||||
|
||||
- type: reaction
|
||||
id: Foam
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemDark
|
||||
|
||||
@@ -18,7 +19,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -29,7 +31,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemFreezer
|
||||
|
||||
@@ -41,7 +44,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -52,7 +56,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemGCircuit
|
||||
|
||||
@@ -64,7 +69,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemLino
|
||||
|
||||
@@ -76,7 +82,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemMono
|
||||
|
||||
@@ -88,7 +95,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemReinforced
|
||||
|
||||
@@ -100,7 +108,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -111,7 +120,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemShowroom
|
||||
|
||||
@@ -123,7 +133,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemSteel
|
||||
|
||||
@@ -135,7 +146,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemDirty
|
||||
|
||||
@@ -147,7 +159,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemTechmaint
|
||||
|
||||
@@ -159,7 +172,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.25
|
||||
item_drop: FloorTileItemWhite
|
||||
|
||||
@@ -171,7 +185,8 @@
|
||||
- space
|
||||
is_subfloor: false
|
||||
can_crowbar: false
|
||||
footstep_sounds: footstep_asteroid
|
||||
footstep_sounds:
|
||||
collection: footstep_asteroid
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -182,7 +197,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_asteroid
|
||||
footstep_sounds:
|
||||
collection: footstep_asteroid
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -193,7 +209,8 @@
|
||||
- space
|
||||
is_subfloor: false
|
||||
can_crowbar: false
|
||||
footstep_sounds: footstep_asteroid
|
||||
footstep_sounds:
|
||||
collection: footstep_asteroid
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -204,7 +221,8 @@
|
||||
- space
|
||||
is_subfloor: false
|
||||
can_crowbar: false
|
||||
footstep_sounds: footstep_asteroid
|
||||
footstep_sounds:
|
||||
collection: footstep_asteroid
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -215,7 +233,8 @@
|
||||
- space
|
||||
is_subfloor: false
|
||||
can_crowbar: false
|
||||
footstep_sounds: footstep_asteroid
|
||||
footstep_sounds:
|
||||
collection: footstep_asteroid
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -226,7 +245,8 @@
|
||||
- space
|
||||
is_subfloor: false
|
||||
can_crowbar: false
|
||||
footstep_sounds: footstep_asteroid
|
||||
footstep_sounds:
|
||||
collection: footstep_asteroid
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -237,7 +257,8 @@
|
||||
- space
|
||||
is_subfloor: false
|
||||
can_crowbar: false
|
||||
footstep_sounds: footstep_snow
|
||||
footstep_sounds:
|
||||
collection: footstep_snow
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -248,7 +269,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemGold
|
||||
|
||||
@@ -260,7 +282,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: SheetGlass1
|
||||
|
||||
@@ -272,7 +295,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
item_drop: SheetRGlass1
|
||||
|
||||
@@ -284,7 +308,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -295,7 +320,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -306,7 +332,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -317,7 +344,8 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
- type: tile
|
||||
@@ -328,5 +356,6 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_floor
|
||||
footstep_sounds:
|
||||
collection: footstep_floor
|
||||
friction: 0.30
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
base_turfs:
|
||||
- underplating
|
||||
is_subfloor: true
|
||||
footstep_sounds: footstep_plating
|
||||
footstep_sounds:
|
||||
collection: footstep_plating
|
||||
friction: 0.5
|
||||
|
||||
- type: tile
|
||||
@@ -15,7 +16,8 @@
|
||||
base_turfs:
|
||||
- space
|
||||
is_subfloor: true
|
||||
footstep_sounds: footstep_plating
|
||||
footstep_sounds:
|
||||
collection: footstep_plating
|
||||
friction: 0.5
|
||||
is_space: true
|
||||
|
||||
@@ -26,5 +28,6 @@
|
||||
base_turfs:
|
||||
- lattice
|
||||
is_subfloor: true
|
||||
footstep_sounds: footstep_plating
|
||||
footstep_sounds:
|
||||
collection: footstep_plating
|
||||
friction: 0.5
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
- plating
|
||||
is_subfloor: false
|
||||
can_crowbar: true
|
||||
footstep_sounds: footstep_wood
|
||||
footstep_sounds:
|
||||
collection: footstep_wood
|
||||
friction: 0.30
|
||||
item_drop: FloorTileItemWood
|
||||
|
||||
Submodule RobustToolbox updated: 8fea42ff9a...9397cc4a6b
Reference in New Issue
Block a user