Fixes (#331)
* Revert "extends shuttle timer to 20m green / 10m on blue (#17826)"
This reverts commit 54a7a4a9a1.
* Fix desword craft
* Fix antispam message
* Less crossbow power usage
* Fix torch missing layers
* Esword fix
* Nerf crossbow damage
This commit is contained in:
@@ -5,12 +5,11 @@
|
|||||||
green:
|
green:
|
||||||
announcement: alert-level-green-announcement
|
announcement: alert-level-green-announcement
|
||||||
color: Green
|
color: Green
|
||||||
shuttleTime: 1200
|
shuttleTime: 600
|
||||||
blue:
|
blue:
|
||||||
announcement: alert-level-blue-announcement
|
announcement: alert-level-blue-announcement
|
||||||
sound: /Audio/Misc/bluealert.ogg
|
sound: /Audio/Misc/bluealert.ogg
|
||||||
color: DodgerBlue
|
color: DodgerBlue
|
||||||
shuttleTime: 600
|
|
||||||
violet:
|
violet:
|
||||||
announcement: alert-level-violet-announcement
|
announcement: alert-level-violet-announcement
|
||||||
sound: /Audio/Misc/notice1.ogg
|
sound: /Audio/Misc/notice1.ogg
|
||||||
@@ -22,12 +21,11 @@
|
|||||||
sound: /Audio/Misc/notice1.ogg
|
sound: /Audio/Misc/notice1.ogg
|
||||||
color: Yellow
|
color: Yellow
|
||||||
emergencyLightColor: Goldenrod
|
emergencyLightColor: Goldenrod
|
||||||
shuttleTime: 600
|
shuttleTime: 400
|
||||||
red:
|
red:
|
||||||
announcement: alert-level-red-announcement
|
announcement: alert-level-red-announcement
|
||||||
sound: /Audio/Misc/redalert.ogg
|
sound: /Audio/Misc/redalert.ogg
|
||||||
color: Red
|
color: Red
|
||||||
shuttleTime: 600 #No reduction in time as we don't have swiping for red alert like in /tg/. Shuttle times are intended to create friction, so having a way to brainlessly bypass that would be dumb.
|
|
||||||
gamma:
|
gamma:
|
||||||
announcement: alert-level-gamma-announcement
|
announcement: alert-level-gamma-announcement
|
||||||
selectable: false
|
selectable: false
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
name: energy sword
|
name: energy sword
|
||||||
parent: BaseItem
|
parent: BaseItem
|
||||||
id: EnergySword
|
id: EnergySwordBase
|
||||||
description: A very loud & dangerous sword with a beam made of pure, concentrated plasma. Cuts through unarmored targets like butter.
|
description: A very loud & dangerous sword with a beam made of pure, concentrated plasma. Cuts through unarmored targets like butter.
|
||||||
|
abstract: true
|
||||||
components:
|
components:
|
||||||
- type: EnergySword
|
- type: EnergySword
|
||||||
- type: ItemToggle
|
- type: ItemToggle
|
||||||
@@ -78,9 +79,13 @@
|
|||||||
malus: 0
|
malus: 0
|
||||||
- type: Reflect
|
- type: Reflect
|
||||||
enabled: false
|
enabled: false
|
||||||
- type: Tag
|
|
||||||
tags:
|
- type: entity
|
||||||
- EnergySword
|
name: energy sword
|
||||||
|
parent: EnergySwordBase
|
||||||
|
id: EnergySword
|
||||||
|
description: A very loud & dangerous sword with a beam made of pure, concentrated plasma. Cuts through unarmored targets like butter.
|
||||||
|
components:
|
||||||
- type: Construction
|
- type: Construction
|
||||||
deconstructionTarget: null
|
deconstructionTarget: null
|
||||||
graph: EnergyDoubleSwordGraph
|
graph: EnergyDoubleSwordGraph
|
||||||
@@ -88,7 +93,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: pen
|
name: pen
|
||||||
parent: EnergySword
|
parent: EnergySwordBase
|
||||||
id: EnergyDagger
|
id: EnergyDagger
|
||||||
suffix: E-Dagger
|
suffix: E-Dagger
|
||||||
description: 'A dark ink pen.'
|
description: 'A dark ink pen.'
|
||||||
@@ -184,7 +189,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: energy cutlass
|
name: energy cutlass
|
||||||
parent: EnergySword
|
parent: EnergySwordBase
|
||||||
id: EnergyCutlass
|
id: EnergyCutlass
|
||||||
description: An exotic energy weapon.
|
description: An exotic energy weapon.
|
||||||
components:
|
components:
|
||||||
@@ -221,7 +226,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: double energy sword
|
name: double energy sword
|
||||||
parent: EnergySword
|
parent: EnergySwordBase
|
||||||
id: EnergyDoubleSword
|
id: EnergyDoubleSword
|
||||||
description: A very dangerous doubled energy sword. Can be stored in pockets when turned off. Makes a lot of noise when used or turned on.
|
description: A very dangerous doubled energy sword. Can be stored in pockets when turned off. Makes a lot of noise when used or turned on.
|
||||||
components:
|
components:
|
||||||
|
|||||||
@@ -48,10 +48,11 @@
|
|||||||
types:
|
types:
|
||||||
Blunt: 15
|
Blunt: 15
|
||||||
- type: Powered
|
- type: Powered
|
||||||
charge: 360
|
charge: 180
|
||||||
damage:
|
damage:
|
||||||
types:
|
types:
|
||||||
Blunt: 30
|
Blunt: 10
|
||||||
|
Heat: 10
|
||||||
- type: Construction
|
- type: Construction
|
||||||
deconstructionTarget: null
|
deconstructionTarget: null
|
||||||
graph: WeaponPoweredCrossbowGraph
|
graph: WeaponPoweredCrossbowGraph
|
||||||
|
|||||||
Reference in New Issue
Block a user