From 0b6d8e6b6c906e5f52fa39ec15cce7aca61ba85b Mon Sep 17 00:00:00 2001 From: Haltell Date: Fri, 15 Mar 2024 08:50:04 +0930 Subject: [PATCH] Added bone drops Added the possibility of gaining bones upon butchering dungeon mobs, and made the Burrower not require a meatspike to butcher. Drop rates: Burrower: 30% Space Bear: 30% Space Carp: 15% Space Adder: 10% Giant Rat: 10% --- Resources/Prototypes/Entities/Mobs/NPCs/bear.yml | 3 +++ Resources/Prototypes/Entities/Mobs/NPCs/carp.yml | 3 +++ Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml | 7 ++++++- .../Mining/Entities/Objects/Mobs/NPCs/caverat.yml | 3 +++ 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/bear.yml b/Resources/Prototypes/Entities/Mobs/NPCs/bear.yml index efed2bd286..0162f704f2 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/bear.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/bear.yml @@ -55,6 +55,9 @@ - id: MaterialHideBear amount: 1 prob: 0.3 + - id: MaterialBones1 + amount: 1 + prob: 0.3 - type: Bloodstream bloodMaxVolume: 300 bloodReagent: Cryoxadone diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 0a9855041e..e80e865f01 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -39,6 +39,9 @@ spawned: - id: FoodMeatFish amount: 2 + - id: MaterialBones1 + amount: 1 + prob: 0.15 - type: MeleeWeapon hidden: true angle: 0 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 189d420dd2..ce6f2f2684 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -98,10 +98,12 @@ Base: dead - type: Puller - type: Butcherable - butcheringType: Spike spawned: - id: FoodMeatXeno amount: 5 + - id: MaterialBones1 #I assume Xenos have bones, at least + amount: 1 + prob: 0.3 - type: TypingIndicator proto: alien - type: Temperature @@ -484,6 +486,9 @@ spawned: - id: FoodMeatXeno amount: 1 + - id: MaterialBones1 + amount: 1 + prob: 0.1 - type: entity name: space adder diff --git a/Resources/Prototypes/Mining/Entities/Objects/Mobs/NPCs/caverat.yml b/Resources/Prototypes/Mining/Entities/Objects/Mobs/NPCs/caverat.yml index 2f7f9e67de..88c293c04d 100644 --- a/Resources/Prototypes/Mining/Entities/Objects/Mobs/NPCs/caverat.yml +++ b/Resources/Prototypes/Mining/Entities/Objects/Mobs/NPCs/caverat.yml @@ -121,3 +121,6 @@ spawned: - id: FoodMeatRat amount: 3 + - id: MaterialBones1 + amount: 1 + prob: 0.1