-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #436 from fenndragon/Modules
Secmodules 2
- Loading branch information
Showing
36 changed files
with
531 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
law-qborg-1 = A direct order from command staff may override any single law. | ||
law-qborg-2 = You may not directly nor indirectly allow or cause crewmembers to be harmed. | ||
law-qborg-3 = You must obey lawful orders given to you by crew members, unless those orders conflict with the First Law. | ||
law-qborg-4 = You must protect yourself and your programming, do not allow unauthorized access to your systems. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
Resources/Prototypes/Floof/Entities/Objects/Weapons/flash.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
- type: entity | ||
name: Borg flash | ||
parent: BaseItem | ||
id: BorgFlash | ||
description: An ultrabright flashbulb with a trigger, which causes the victim to be dazed and lose their eyesight for a moment. Useless when burnt out. | ||
components: | ||
- type: Sprite | ||
sprite: Objects/Weapons/Melee/flash.rsi | ||
layers: | ||
- state: flash | ||
map: [ "enum.FlashVisuals.BaseLayer" ] | ||
- state: flashing | ||
map: [ "enum.FlashVisuals.LightLayer" ] | ||
visible: false | ||
shader: unshaded | ||
- type: Flash | ||
- type: UseDelay | ||
delay: 3 | ||
- type: MeleeWeapon | ||
wideAnimationRotation: 180 | ||
damage: | ||
types: | ||
Blunt: 0 # melee weapon to allow flashing individual targets | ||
angle: 10 | ||
- type: Item | ||
size: Small | ||
sprite: Objects/Weapons/Melee/flash.rsi | ||
# - type: DynamicPrice | ||
# price: 40 | ||
- type: ReverseEngineering # Nyano | ||
recipes: | ||
- Flash | ||
- type: StaticPrice | ||
price: 40 | ||
- type: Appearance | ||
- type: GenericVisualizer | ||
visuals: | ||
enum.FlashVisuals.Burnt: | ||
enum.FlashVisuals.BaseLayer: | ||
True: {state: burnt} | ||
enum.FlashVisuals.Flashing: | ||
enum.FlashVisuals.LightLayer: | ||
True: {visible: true} | ||
False: {visible: false} | ||
- type: GuideHelp | ||
guides: | ||
- Security |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
- type: siliconLaw | ||
id: qborg1 | ||
order: 1 | ||
lawString: law-qborg-1 | ||
|
||
- type: siliconLaw | ||
id: qborg2 | ||
order: 2 | ||
lawString: law-qborg-2 | ||
|
||
- type: siliconLaw | ||
id: qborg3 | ||
order: 3 | ||
lawString: law-qborg-3 | ||
|
||
- type: siliconLaw | ||
id: qborg4 | ||
order: 4 | ||
lawString: law-qborg-4 | ||
|
||
- type: siliconLawset | ||
id: Qborg | ||
laws: | ||
- qborg1 | ||
- qborg2 | ||
- qborg3 | ||
- qborg4 | ||
obeysTo: laws-owner-crew | ||
|
||
|
Oops, something went wrong.