-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e4466fd
commit 8bb6b07
Showing
30 changed files
with
386 additions
and
18 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
Content.Shared/_NF/Clothing/Components/CatWearableComponent.cs
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,11 @@ | ||
using Robust.Shared.GameStates; | ||
|
||
namespace Content.Shared._NF.Clothing.Components; | ||
/// <summary> | ||
/// Replace tag for frontier use | ||
/// </summary> | ||
[RegisterComponent, NetworkedComponent] | ||
public sealed partial class CatWearableComponent : Component | ||
{ | ||
|
||
} |
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,2 @@ | ||
ghost-role-information-clippy-name = Clippy | ||
ghost-role-information-clippy-description = The Station Representative's loyal worker, smells like cardboard and papers. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- type: dataset | ||
id: names_cat_clippy | ||
values: | ||
- Clippy |
11 changes: 11 additions & 0 deletions
11
Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.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,11 @@ | ||
- type: entity | ||
parent: NFClothingBackpack | ||
id: ClothingBackpackClippy | ||
name: Clippy's backpack | ||
description: Made from a real Clippy. | ||
components: | ||
- type: Sprite | ||
sprite: _NF/Clothing/Back/Backpacks/clippy.rsi | ||
- type: Storage | ||
storageOpenSound: | ||
collection: CatMeows |
13 changes: 13 additions & 0 deletions
13
Resources/Prototypes/_NF/Entities/Clothing/Back/base_clothing_backpack.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,13 @@ | ||
- type: entity | ||
parent: [ ClothingBackpack,] # DeltaV - Comment out NFBackpackHiddenStash | ||
id: NFClothingBackpack | ||
components: | ||
- type: Storage | ||
maxItemSize: Large | ||
defaultStorageOrientation: Vertical | ||
grid: | ||
- 0,0,6,3 | ||
- type: Item | ||
size: Huge | ||
shape: | ||
- 0,0,6,3 |
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,20 @@ | ||
- type: entity | ||
id: NFTippy | ||
parent: Tippy | ||
categories: [ HideSpawnMenu ] | ||
components: | ||
- type: Sprite | ||
layers: | ||
- sprite: _NF/Tips/clippy.rsi | ||
state: left | ||
map: [ "revealing" ] | ||
- sprite: _NF/Tips/clippy.rsi | ||
state: right | ||
map: [ "hiding" ] | ||
- sprite: _NF/Tips/clippy.rsi | ||
state: down | ||
visible: false | ||
map: [ "speaking" ] | ||
- type: FootstepModifier | ||
footstepSoundCollection: | ||
collection: CatMeows |
64 changes: 64 additions & 0 deletions
64
Resources/Prototypes/_NF/Entities/Mobs/NPCs/emotionalsupportanimals.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,64 @@ | ||
- type: entity | ||
id: BaseEmotionalGhost | ||
abstract: true | ||
components: | ||
- type: GhostTakeoverAvailable | ||
- type: GhostRole | ||
name: ghost-role-information-emotional-support-name | ||
description: ghost-role-information-emotional-support-description | ||
rules: ghost-role-information-emotional-support-rules | ||
makeSentient: true | ||
allowSpeech: true | ||
allowMovement: true | ||
prototype: EmotionalSupportPet | ||
- type: Grammar | ||
attributes: | ||
proper: true | ||
gender: epicene | ||
- type: IdExaminable | ||
- type: InventorySlots | ||
- type: Strippable | ||
- type: UserInterface | ||
interfaces: | ||
enum.StrippingUiKey.Key: | ||
type: StrippableBoundUserInterface | ||
- type: Tag | ||
tags: | ||
- CannotSuicide | ||
- DoorBumpOpener | ||
- VimPilot | ||
- type: Puller | ||
needsHands: false | ||
- type: Inventory | ||
templateId: nfpet | ||
|
||
- type: entity | ||
id: BaseEmotionalGhostCat | ||
parent: BaseEmotionalGhost | ||
abstract: true | ||
components: | ||
- type: ReplacementAccent | ||
accent: cat | ||
- type: Vocal | ||
sounds: | ||
Male: Cat | ||
Female: Cat | ||
Unsexed: Cat | ||
- type: Inventory | ||
templateId: nfcat | ||
speciesId: cat | ||
- type: RotationVisuals | ||
defaultRotation: 90 | ||
horizontalRotation: 90 | ||
|
||
- type: entity | ||
suffix: Ghost | ||
parent: [BaseEmotionalGhostCat, MobCat] | ||
id: MobCatGhost | ||
components: | ||
- type: RandomMetadata | ||
nameSegments: [names_cat] | ||
- type: DamageStateVisuals | ||
states: | ||
Alive: | ||
Base: cat |
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,43 @@ | ||
- type: entity | ||
id: NFMobPet | ||
abstract: true | ||
components: | ||
- type: GhostRole | ||
- type: IntrinsicRadioReceiver | ||
- type: CargoSellBlacklist | ||
|
||
- type: entity | ||
name: Clippy | ||
parent: [NFMobPet, MobCatGhost] | ||
id: MobCatClippy | ||
description: It looks like you’re writing a letter, would you like help? | ||
components: | ||
- type: GhostRole | ||
name: ghost-role-information-clippy-name | ||
description: ghost-role-information-deltav-clippy-description # DeltaV - Alternate Description | ||
rules: ghost-role-information-nonantagonist-rules | ||
prototype: CatClippy | ||
- type: Loadout | ||
prototypes: [ MobClippyGear ] | ||
- type: RandomMetadata | ||
nameSegments: [names_cat_clippy] | ||
# - type: AutoImplant # DeltaV - Comment out Implants | ||
# implants: | ||
# - MindShieldImplant | ||
# - MedicalTrackingImplant | ||
- type: Butcherable | ||
spawned: | ||
- id: FoodMeatCat | ||
amount: 1 | ||
# - id: MaterialHideClippy # DeltaV - Comment Out | ||
# - type: IntrinsicRadioTransmitter # DeltaV - Comment out Radio Channels | ||
# channels: | ||
# - Service | ||
# - type: ActiveRadio | ||
# channels: | ||
# - Service | ||
- type: NpcFactionMember | ||
factions: | ||
- Cat | ||
- PetsNT | ||
- type: ShowJobIcons |
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,12 @@ | ||
- type: entity | ||
name: Clippy Spawner | ||
id: SpawnMobCatClippy | ||
parent: MarkerBase | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: green | ||
- state: ai | ||
- type: ConditionalSpawner | ||
prototypes: | ||
- MobCatClippy |
69 changes: 69 additions & 0 deletions
69
Resources/Prototypes/_NF/InventoryTemplates/cat_inventory_template.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 @@ | ||
- type: inventoryTemplate | ||
id: nfcat | ||
slots: | ||
- name: head | ||
slotTexture: head | ||
slotFlags: HEAD | ||
slotGroup: MainHotbar | ||
uiWindowPos: 0,0 | ||
strippingWindowPos: 0,0 | ||
displayName: Head | ||
whitelist: | ||
components: | ||
- CatWearable | ||
|
||
- name: mask | ||
slotTexture: mask | ||
slotFlags: MASK | ||
uiWindowPos: 1,1 | ||
strippingWindowPos: 1,1 | ||
displayName: Mask | ||
whitelist: | ||
tags: | ||
- PetWearable | ||
components: | ||
- CatWearable | ||
|
||
- name: suitstorage | ||
slotTexture: suit_storage | ||
slotFlags: SUITSTORAGE | ||
slotGroup: SecondHotbar | ||
stripTime: 3 | ||
uiWindowPos: 2,0 | ||
strippingWindowPos: 2,5 | ||
displayName: Suit Storage | ||
whitelist: | ||
components: | ||
- GasTank | ||
|
||
- name: belt | ||
slotTexture: belt | ||
slotFlags: BELT | ||
slotGroup: SecondHotbar | ||
stripTime: 1 | ||
uiWindowPos: 3,1 | ||
strippingWindowPos: 1,5 | ||
displayName: Belt | ||
whitelist: | ||
components: | ||
- CatWearable | ||
|
||
- name: outerClothing | ||
slotTexture: suit | ||
slotFlags: OUTERCLOTHING | ||
stripTime: 6 | ||
uiWindowPos: 1,1 | ||
strippingWindowPos: 1,2 | ||
displayName: Suit | ||
whitelist: | ||
components: | ||
- CatWearable | ||
|
||
- name: id | ||
slotTexture: id | ||
slotFlags: IDCARD | ||
slotGroup: SecondHotbar | ||
stripTime: 6 | ||
uiWindowPos: 2,1 | ||
strippingWindowPos: 2,4 | ||
displayName: ID |
12 changes: 12 additions & 0 deletions
12
Resources/Prototypes/_NF/InventoryTemplates/pet_inventory_template.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,12 @@ | ||
- type: inventoryTemplate | ||
id: nfpet | ||
slots: | ||
- name: mask | ||
slotTexture: mask | ||
slotFlags: MASK | ||
uiWindowPos: 1,1 | ||
strippingWindowPos: 1,1 | ||
displayName: Mask | ||
whitelist: | ||
tags: | ||
- PetWearable |
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,7 @@ | ||
- type: ghostRole | ||
id: CatClippy | ||
name: ghost-role-information-clippy-name | ||
description: ghost-role-information-clippy-description | ||
rules: ghost-role-information-emotional-support-rules | ||
entityPrototype: MobCatClippy | ||
whitelisted: false # DeltaV - Change True>False |
21 changes: 21 additions & 0 deletions
21
Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.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,21 @@ | ||
# Aghost | ||
- type: startingGear | ||
id: NFMobAghostGear | ||
equipment: | ||
back: ClothingBackpackSatchelHolding | ||
id: NFAdminPDA | ||
storage: | ||
back: | ||
- GasAnalyzer | ||
- trayScanner | ||
- AccessConfiguratorUniversal | ||
- Multitool | ||
- PowerDrill | ||
- JawsOfLife | ||
- WelderIndustrialAdvanced | ||
|
||
- type: startingGear | ||
id: MobClippyGear | ||
equipment: | ||
head: ClothingHeadMailCarrier | ||
# id: ClippyIDCard # DeltaV - Commented out |
Binary file added
BIN
+555 Bytes
...ces/Textures/Nyanotrasen/Clothing/Head/Hats/mailman.rsi/equipped-HELMET-cat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.