Respace Psionics Audio & Localization Files (#700)
# Description Effectively Part 2 of splitting up the Psionic Refactor. This PR is partially respacing the non-C# side of Psionics code, such as Localizations, Audio files, some entities. I'm not respacing all of them in a single sitting because just finding them all is a complete pain in the ass. No media because there's nothing to show. No changelog because this isn't player facing.
@@ -19,3 +19,8 @@ log-probe-scan = Downloaded logs from {$device}!
|
||||
log-probe-label-time = Time
|
||||
log-probe-label-accessor = Accessed by
|
||||
log-probe-label-number = #
|
||||
|
||||
glimmer-monitor-program-name = Glimmer Monitor
|
||||
glimmer-monitor-current-glimmer = Current Glimmer: {$glimmer}Ψ
|
||||
glimmer-monitor-interval = Interval
|
||||
glimmer-monitor-sync = Sync
|
||||
|
||||
@@ -1 +1 @@
|
||||
effect-sleepy = You feel a bit sleepy.
|
||||
effect-sleepy = You feel a bit sleepy.
|
||||
@@ -344,3 +344,21 @@ reagent-effect-guidebook-missing =
|
||||
[1] Causes
|
||||
*[other] cause
|
||||
} an unknown effect as nobody has written this effect yet
|
||||
|
||||
reagent-effect-guidebook-change-glimmer-reaction-effect =
|
||||
{ $chance ->
|
||||
[1] Modifies
|
||||
*[other] modify
|
||||
} the glimmer count by {$count} points
|
||||
|
||||
reagent-effect-guidebook-chem-remove-psionic =
|
||||
{ $chance ->
|
||||
[1] Removes
|
||||
*[other] remove
|
||||
} psionic powers
|
||||
|
||||
reagent-effect-guidebook-chem-reroll-psionic =
|
||||
{ $chance ->
|
||||
[1] Allows
|
||||
*[other] allow
|
||||
} a chance to get a different psionic power
|
||||
@@ -70,3 +70,7 @@ guide-entry-space-ninja = Space Ninja
|
||||
|
||||
guide-entry-writing = Writing
|
||||
guide-entry-glossary = Glossary
|
||||
|
||||
guide-entry-altars-golemancy = Altars and Golemancy
|
||||
guide-entry-psionics = Psionics
|
||||
guide-entry-reverse-engineering = Reverse Engineering
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
glimmer-monitor-program-name = Glimmer Monitor
|
||||
glimmer-monitor-current-glimmer = Current Glimmer: {$glimmer}Ψ
|
||||
glimmer-monitor-interval = Interval
|
||||
glimmer-monitor-sync = Sync
|
||||
@@ -1,21 +1,3 @@
|
||||
reagent-effect-guidebook-change-glimmer-reaction-effect =
|
||||
{ $chance ->
|
||||
[1] Modifies
|
||||
*[other] modify
|
||||
} the glimmer count by {$count} points
|
||||
|
||||
reagent-effect-guidebook-chem-remove-psionic =
|
||||
{ $chance ->
|
||||
[1] Removes
|
||||
*[other] remove
|
||||
} psionic powers
|
||||
|
||||
reagent-effect-guidebook-chem-reroll-psionic =
|
||||
{ $chance ->
|
||||
[1] Allows
|
||||
*[other] allow
|
||||
} a chance to get a different psionic power
|
||||
|
||||
## Disease System support
|
||||
|
||||
reagent-effect-guidebook-chem-miasma-pool =
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
guide-entry-altars-golemancy = Altars and Golemancy
|
||||
guide-entry-psionics = Psionics
|
||||
guide-entry-reverse-engineering = Reverse Engineering
|
||||
@@ -1,8 +0,0 @@
|
||||
reagent-name-soulbreaker-toxin = soulbreaker toxin
|
||||
reagent-desc-soulbreaker-toxin = An anti-psionic about 4 times as powerful as mindbreaker toxin.
|
||||
|
||||
reagent-name-lotophagoi-oil = lotophagoi oil
|
||||
reagent-desc-lotophagoi-oil = A super potent drug that is much better at inducing psionics than normal hallucinogens, but with worse side effects.
|
||||
|
||||
reagent-name-ectoplasm = ectoplasm
|
||||
reagent-desc-ectoplasm = The physical component of semi-corporeal spirits.
|
||||
@@ -1 +0,0 @@
|
||||
artifact-effect-hint-psionic = Noöspheric disturbance
|
||||
@@ -75,3 +75,12 @@ reagent-desc-vestine = Has an adverse reaction within the body causing major jit
|
||||
|
||||
reagent-name-tazinide = tazinide
|
||||
reagent-desc-tazinide = A highly dangerous metallic mixture which can interfere with most movement through an electrifying current.
|
||||
|
||||
reagent-name-soulbreaker-toxin = soulbreaker toxin
|
||||
reagent-desc-soulbreaker-toxin = An anti-psionic about 4 times as powerful as mindbreaker toxin.
|
||||
|
||||
reagent-name-lotophagoi-oil = lotophagoi oil
|
||||
reagent-desc-lotophagoi-oil = A super potent drug that is much better at inducing psionics than normal hallucinogens, but with worse side effects.
|
||||
|
||||
reagent-name-ectoplasm = ectoplasm
|
||||
reagent-desc-ectoplasm = The physical component of semi-corporeal spirits.
|
||||
|
||||
@@ -40,3 +40,6 @@ artifact-trigger-hint-regular-gases = Standard atmospheric gases
|
||||
artifact-trigger-hint-plasma = Gaseous plasma
|
||||
artifact-trigger-hint-land = Active deceleration
|
||||
artifact-trigger-hint-examine = Examination
|
||||
|
||||
# Psionic Effects
|
||||
artifact-effect-hint-psionic = Noöspheric disturbance
|
||||
|
||||
136
Resources/Prototypes/Actions/psionics.yml
Normal file
@@ -0,0 +1,136 @@
|
||||
- type: entity
|
||||
id: ActionDispel
|
||||
name: action-name-dispel
|
||||
description: action-description-dispel
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Interface/VerbIcons/dispel.png
|
||||
useDelay: 45
|
||||
checkCanAccess: false
|
||||
range: 6
|
||||
itemIconStyle: BigAction
|
||||
canTargetSelf: false
|
||||
event: !type:DispelPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMassSleep
|
||||
name: action-name-mass-sleep
|
||||
description: action-description-mass-sleep
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: WorldTargetAction
|
||||
icon: Interface/VerbIcons/mass_sleep.png
|
||||
useDelay: 60
|
||||
checkCanAccess: false
|
||||
range: 8
|
||||
itemIconStyle: BigAction
|
||||
event: !type:MassSleepPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMindSwap
|
||||
name: action-name-mind-swap
|
||||
description: action-description-mind-swap
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Interface/VerbIcons/mind_swap.png
|
||||
useDelay: 240
|
||||
checkCanAccess: false
|
||||
range: 8
|
||||
itemIconStyle: BigAction
|
||||
event: !type:MindSwapPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMindSwapReturn
|
||||
name: action-name-mind-swap-return
|
||||
description: action-description-mind-swap-return
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Interface/VerbIcons/mind_swap_return.png
|
||||
useDelay: 20
|
||||
checkCanInteract: false
|
||||
event: !type:MindSwapPowerReturnActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionNoosphericZap
|
||||
name: action-name-noospheric-zap
|
||||
description: action-description-noospheric-zap
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Interface/VerbIcons/noospheric_zap.png
|
||||
useDelay: 100
|
||||
range: 5
|
||||
itemIconStyle: BigAction
|
||||
event: !type:NoosphericZapPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPyrokinesis
|
||||
name: action-name-pyrokinesis
|
||||
description: action-description-pyrokinesis
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Interface/VerbIcons/pyrokinesis.png
|
||||
useDelay: 50
|
||||
range: 6
|
||||
checkCanAccess: false
|
||||
itemIconStyle: BigAction
|
||||
event: !type:PyrokinesisPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMetapsionic
|
||||
name: action-name-metapsionic
|
||||
description: action-description-metapsionic
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Interface/VerbIcons/metapsionic.png
|
||||
useDelay: 45
|
||||
event: !type:MetapsionicPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPsionicRegeneration
|
||||
name: action-name-psionic-regeneration
|
||||
description: action-description-psionic-regeneration
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Interface/VerbIcons/psionic_regeneration.png
|
||||
useDelay: 120
|
||||
event: !type:PsionicRegenerationPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionTelegnosis
|
||||
name: action-name-telegnosis
|
||||
description: action-description-telegnosis
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Interface/VerbIcons/telegnosis.png
|
||||
useDelay: 150
|
||||
event: !type:TelegnosisPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPsionicInvisibility
|
||||
name: action-name-psionic-invisibility
|
||||
description: action-description-psionic-invisibility
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Interface/VerbIcons/psionic_invisibility.png
|
||||
useDelay: 120
|
||||
event: !type:PsionicInvisibilityPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPsionicInvisibilityUsed
|
||||
name: action-name-psionic-invisibility-off
|
||||
description: action-description-psionic-invisibility-off
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Interface/VerbIcons/psionic_invisibility_off.png
|
||||
event: !type:RemovePsionicInvisibilityOffPowerActionEvent
|
||||
|
||||
@@ -18,141 +18,4 @@
|
||||
charges: 1
|
||||
icon: { sprite: Nyanotrasen/Objects/Specific/Species/felinid.rsi, state: icon }
|
||||
useDelay: 30
|
||||
event: !type:HairballActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionDispel
|
||||
name: action-name-dispel
|
||||
description: action-description-dispel
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/dispel.png
|
||||
useDelay: 45
|
||||
checkCanAccess: false
|
||||
range: 6
|
||||
itemIconStyle: BigAction
|
||||
canTargetSelf: false
|
||||
event: !type:DispelPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMassSleep
|
||||
name: action-name-mass-sleep
|
||||
description: action-description-mass-sleep
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: WorldTargetAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/mass_sleep.png
|
||||
useDelay: 60
|
||||
checkCanAccess: false
|
||||
range: 8
|
||||
itemIconStyle: BigAction
|
||||
event: !type:MassSleepPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMindSwap
|
||||
name: action-name-mind-swap
|
||||
description: action-description-mind-swap
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/mind_swap.png
|
||||
useDelay: 240
|
||||
checkCanAccess: false
|
||||
range: 8
|
||||
itemIconStyle: BigAction
|
||||
event: !type:MindSwapPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMindSwapReturn
|
||||
name: action-name-mind-swap-return
|
||||
description: action-description-mind-swap-return
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/mind_swap_return.png
|
||||
useDelay: 20
|
||||
checkCanInteract: false
|
||||
event: !type:MindSwapPowerReturnActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionNoosphericZap
|
||||
name: action-name-noospheric-zap
|
||||
description: action-description-noospheric-zap
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/noospheric_zap.png
|
||||
useDelay: 100
|
||||
range: 5
|
||||
itemIconStyle: BigAction
|
||||
event: !type:NoosphericZapPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPyrokinesis
|
||||
name: action-name-pyrokinesis
|
||||
description: action-description-pyrokinesis
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: EntityTargetAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/pyrokinesis.png
|
||||
useDelay: 50
|
||||
range: 6
|
||||
checkCanAccess: false
|
||||
itemIconStyle: BigAction
|
||||
event: !type:PyrokinesisPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionMetapsionic
|
||||
name: action-name-metapsionic
|
||||
description: action-description-metapsionic
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/metapsionic.png
|
||||
useDelay: 45
|
||||
event: !type:MetapsionicPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPsionicRegeneration
|
||||
name: action-name-psionic-regeneration
|
||||
description: action-description-psionic-regeneration
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/psionic_regeneration.png
|
||||
useDelay: 120
|
||||
event: !type:PsionicRegenerationPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionTelegnosis
|
||||
name: action-name-telegnosis
|
||||
description: action-description-telegnosis
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/telegnosis.png
|
||||
useDelay: 150
|
||||
event: !type:TelegnosisPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPsionicInvisibility
|
||||
name: action-name-psionic-invisibility
|
||||
description: action-description-psionic-invisibility
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/psionic_invisibility.png
|
||||
useDelay: 120
|
||||
event: !type:PsionicInvisibilityPowerActionEvent
|
||||
|
||||
- type: entity
|
||||
id: ActionPsionicInvisibilityUsed
|
||||
name: action-name-psionic-invisibility-off
|
||||
description: action-description-psionic-invisibility-off
|
||||
noSpawn: true
|
||||
components:
|
||||
- type: InstantAction
|
||||
icon: Nyanotrasen/Interface/VerbIcons/psionic_invisibility_off.png
|
||||
event: !type:RemovePsionicInvisibilityOffPowerActionEvent
|
||||
|
||||
event: !type:HairballActionEvent
|
||||
@@ -67,22 +67,22 @@
|
||||
- type: AmbientSound
|
||||
range: 6
|
||||
volume: -6
|
||||
sound: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_low.ogg
|
||||
sound: /Audio/Ambience/Objects/prober_hum_low.ogg
|
||||
- type: AmbientOnPowered
|
||||
- type: GlimmerSound
|
||||
glimmerTier:
|
||||
Minimal:
|
||||
path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_low.ogg
|
||||
path: /Audio/Ambience/Objects/prober_hum_low.ogg
|
||||
Low:
|
||||
path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_low.ogg
|
||||
path: /Audio/Ambience/Objects/prober_hum_low.ogg
|
||||
Moderate:
|
||||
path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_moderate.ogg
|
||||
path: /Audio/Ambience/Objects/prober_hum_moderate.ogg
|
||||
High:
|
||||
path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_high.ogg
|
||||
path: /Audio/Ambience/Objects/prober_hum_high.ogg
|
||||
Dangerous:
|
||||
path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_dangerous.ogg
|
||||
path: /Audio/Ambience/Objects/prober_hum_dangerous.ogg
|
||||
Critical:
|
||||
path: /Audio/Nyanotrasen/Ambience/Objects/prober_hum_dangerous.ogg
|
||||
path: /Audio/Ambience/Objects/prober_hum_dangerous.ogg
|
||||
|
||||
- type: entity
|
||||
parent: BaseMachinePowered
|
||||
|
||||
|
Before Width: | Height: | Size: 711 B After Width: | Height: | Size: 711 B |
|
Before Width: | Height: | Size: 848 B After Width: | Height: | Size: 848 B |
|
Before Width: | Height: | Size: 690 B After Width: | Height: | Size: 690 B |
|
Before Width: | Height: | Size: 996 B After Width: | Height: | Size: 996 B |
|
Before Width: | Height: | Size: 924 B After Width: | Height: | Size: 924 B |
|
Before Width: | Height: | Size: 806 B After Width: | Height: | Size: 806 B |
|
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 518 B |
|
Before Width: | Height: | Size: 891 B After Width: | Height: | Size: 891 B |
|
Before Width: | Height: | Size: 732 B After Width: | Height: | Size: 732 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 843 B After Width: | Height: | Size: 843 B |