From f203490b9467f0e63e8def47b2f063e2ac88fc6f Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Sat, 2 Sep 2023 17:08:53 +1000 Subject: add armor drops values (#27) --- constants/ArmorDrops.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 constants/ArmorDrops.json diff --git a/constants/ArmorDrops.json b/constants/ArmorDrops.json new file mode 100644 index 0000000..aadacb8 --- /dev/null +++ b/constants/ArmorDrops.json @@ -0,0 +1,29 @@ +{ + "CROPIE": { + "armor_type": "MELON", + "chance": [ + 0.0, + 0.03, + 0.04, + 0.05 + ] + }, + "SQUASH": { + "armor_type": "CROPIE", + "chance": [ + 0.0, + 0.01, + 0.02, + 0.03 + ] + }, + "FERMENTO": { + "armor_types": "SQUASH", + "chance": [ + 0.0, + 0.005, + 0.006, + 0.007 + ] + } +} \ No newline at end of file -- cgit