Advertisement
Velken_Iakov

paramedic hardsuits.yml

Jan 26th, 2025
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.04 KB | None | 0 0
  1. #Paramedic Voidsuit
  2. - type: entity
  3.   parent: [ClothingOuterHardsuitBase, BaseMedicalContraband]
  4.   id: ClothingOuterHardsuitVoidParamed
  5.   name: paramedic void suit
  6.   description: A void suit made for paramedics.
  7.   components:
  8.   - type: Sprite
  9.     sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi
  10.     layers:
  11.       - state: icon
  12.       - state: icon-siren
  13.       - state: icon-siren-light
  14.         visible: false
  15.         shader: unshaded
  16.         map: [ "light" ]
  17.   - type: Appearance
  18.   - type: Clothing
  19.     sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi
  20.   - type: PressureProtection
  21.     highPressureMultiplier: 0.5
  22.     lowPressureMultiplier: 1000
  23.   - type: ClothingSpeedModifier
  24.     walkModifier: 0.9
  25.     sprintModifier: 0.9
  26.   - type: HeldSpeedModifier
  27.   - type: TemperatureProtection
  28.     heatingCoefficient: 0.1
  29.     coolingCoefficient: 0.1
  30.   - type: Armor
  31.     modifiers:
  32.       coefficients:
  33.         Heat: 0.90
  34.         Radiation: 0.75
  35.         Caustic: 0.5
  36.   - type: GroupExamine
  37.   - type: StealTarget
  38.     stealGroup: ClothingOuterHardsuitVoidParamed
  39.   - type: ToggleableClothing
  40.     clothingPrototype: ClothingHeadHelmetVoidParamed
  41.   - type: ItemToggle
  42.     onUse: false
  43.     soundActivate:
  44.       path: /Audio/Items/flashlight_on.ogg
  45.     soundDeactivate:
  46.       path: /Audio/Items/flashlight_off.ogg
  47.   - type: ItemToggleActiveSound
  48.     activeSound:
  49.       path: /Audio/Effects/Vehicle/ambulancesiren.ogg
  50.       params:
  51.         volume: -4
  52.   - type: UseDelay
  53.     delay: 1.0
  54.   - type: ToggleClothing
  55.     action: ActionToggleParamedicSiren
  56.   - type: ItemTogglePointLight
  57.   - type: PointLight
  58.     enabled: false
  59.     radius: 2
  60.     energy: 2
  61.     color: blue
  62.     netsync: false
  63.     mask: /Textures/Effects/LightMasks/double_cone.png
  64.   - type: RotatingLight
  65.     speed: 360
  66.  
  67. - type: entity
  68.   id: ActionToggleParamedicSiren
  69.   name: Toggle Paramedic Siren
  70.   description: Toggles the paramedic siren on and off.
  71.   components:
  72.   - type: InstantAction
  73.     useDelay: 1
  74.     itemIconStyle: BigItem
  75.     event: !type:ToggleActionEvent
Tags: yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement