forked from space-wizards/space-station-14
-
-
Notifications
You must be signed in to change notification settings - Fork 78
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 #1251 from DinnerCalzone/bird-station
Hummingbird update, evil skull thief objective, make Fin-Fin steal objective check if he exists
- Loading branch information
Showing
7 changed files
with
191 additions
and
60 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
1 change: 1 addition & 0 deletions
1
Resources/Locale/en-US/_Impstation/objectives/conditions/steal.ftl
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# this is so scuffed im so fucking sorry | ||
objective-condition-thief-generator-description = If the station needed this generator, they should have used it! Now it'll be mine...! | ||
objective-condition-thief-cigarettes = THUI TEK NEW PORTS | ||
objective-condition-thief-evil-skull-description = From what I hear, the chaplain keeps it in the chapel morgue... It's as good as mine! | ||
objective-condition-thief-multiply-structure-description = I need to get {$count} parts of the {$itemName} and take them with me. |
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
69 changes: 69 additions & 0 deletions
69
...urces/Prototypes/_Impstation/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.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,69 @@ | ||
#this is copied from the BaseXenoArtifactItem prototyped instead of parenting because I needed to remove the random sprites and using RemoveComp sounds scary | ||
- type: entity | ||
parent: BaseItem | ||
id: EvilSkullArtifactItem | ||
name: evil skull | ||
suffix: Hummingbird thief objective | ||
description: Beware. | ||
components: | ||
- type: Sprite | ||
sprite: Mobs/Species/Skeleton/parts.rsi | ||
state: skull_icon | ||
- type: Damageable | ||
- type: Physics | ||
bodyType: Dynamic | ||
- type: CollisionWake | ||
enabled: false | ||
- type: InteractionOutline | ||
- type: Reactive | ||
groups: | ||
Acidic: [Touch] | ||
- type: Fixtures | ||
fixtures: | ||
fix1: | ||
shape: | ||
!type:PhysShapeAabb | ||
bounds: "-0.25,-0.25,0.25,0.25" | ||
density: 20 | ||
mask: | ||
- ItemMask | ||
layer: | ||
- Opaque | ||
restitution: 0.3 # fite me | ||
friction: 0.2 | ||
- type: Artifact | ||
activationSound: !type:SoundPathSpecifier | ||
params: | ||
variation: 0.125 | ||
path: /Audio/Voice/Skeleton/skeleton_scream.ogg | ||
nodesMax: 13 | ||
nodesMin: 5 | ||
- type: UserInterface #needs to be here for certain effects | ||
interfaces: | ||
enum.StorageUiKey.Key: | ||
type: StorageBoundUserInterface | ||
enum.TransferAmountUiKey.Key: | ||
type: TransferAmountBoundUserInterface | ||
enum.InstrumentUiKey.Key: | ||
type: InstrumentBoundUserInterface | ||
enum.IntercomUiKey.Key: | ||
type: IntercomBoundUserInterface | ||
- type: Appearance | ||
- type: Item | ||
size: Normal | ||
- type: Actions | ||
- type: Speech | ||
speechSounds: Alto | ||
speechVerb: Skeleton | ||
- type: SkeletonAccent | ||
- type: Vocal | ||
sounds: | ||
Male: Skeleton | ||
Female: Skeleton | ||
Unsexed: Skeleton | ||
- type: PointLight | ||
energy: 5 | ||
color: '#FF0000FF' | ||
radius: 1.3 | ||
- type: StealTarget | ||
stealGroup: EvilSkullArtifactItem |
Oops, something went wrong.