From c9486fd4ce22bcef0010c8a4f9372c637e194231 Mon Sep 17 00:00:00 2001 From: Chorus System Date: Sun, 7 May 2023 16:36:49 -0400 Subject: [PATCH] Sling bullet/ball bearing recovery (#2768) * Sling bullet/ball bearing recovery I made it so that sling bullets, small sling bullets, and ball bearings drop themselves. * Removed drop, added recover flag The Drop field made it drop 50 copies of an 'active' ball bearing, so instead I just made it have the "RECOVER_1000" flag for ball bearings, sling bullets, and small sling bullets. * Update data/json/items/ammo.json Co-authored-by: Chaosvolt * Update data/json/items/ammo.json Co-authored-by: Chaosvolt * Update data/json/items/ammo.json Co-authored-by: Chaosvolt --------- Co-authored-by: Chaosvolt --- data/json/items/ammo.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/data/json/items/ammo.json b/data/json/items/ammo.json index 27668ac731df..67f3e2eeacbb 100644 --- a/data/json/items/ammo.json +++ b/data/json/items/ammo.json @@ -360,6 +360,7 @@ "dispersion": 14, "loudness": 0, "count": 50, + "dont_recover_one_in": 1000, "effects": [ "NEVER_MISFIRES", "NON-FOULING" ] }, { @@ -1076,7 +1077,8 @@ "dispersion": 10, "loudness": 0, "to_hit": -1, - "effects": [ "NEVER_MISFIRES", "NON-FOULING", "RECOVER_100" ] + "dont_recover_one_in": 1000, + "effects": [ "NEVER_MISFIRES", "NON-FOULING" ] }, { "type": "AMMO", @@ -1095,6 +1097,7 @@ "dispersion": 10, "loudness": 0, "count": 30, - "effects": [ "NEVER_MISFIRES", "NON-FOULING", "RECOVER_100" ] + "dont_recover_one_in": 1000, + "effects": [ "NEVER_MISFIRES", "NON-FOULING" ] } ]