diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-09-30 13:25:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-30 11:25:57 +0000 |
| commit | 84c6756c667aece1fdfddd3d6777276ff8f0428b (patch) | |
| tree | 080102ef9a874d27166a1ca23c477507752c376d | |
| parent | 6a168cea10e7be6286d69b1eaa597f391af33cae (diff) | |
| download | NotEnoughUpdates-REPO-84c6756c667aece1fdfddd3d6777276ff8f0428b.tar.gz NotEnoughUpdates-REPO-84c6756c667aece1fdfddd3d6777276ff8f0428b.tar.bz2 NotEnoughUpdates-REPO-84c6756c667aece1fdfddd3d6777276ff8f0428b.zip | |
feat: Dye chances on 110 mobs (#1381)
* feat: Dye chances on 110 mobs
* fix: Double %
110 files changed, 517 insertions, 22 deletions
diff --git a/items/AGARIMOO_SC.json b/items/AGARIMOO_SC.json index e90c148e..d01197c0 100644 --- a/items/AGARIMOO_SC.json +++ b/items/AGARIMOO_SC.json @@ -39,6 +39,11 @@ { "id": "AGARIMOO_TONGUE:3", "chance": "100%" + }, + { + "id": "DYE_AQUAMARINE", + "extra": [], + "chance": "0.00002%" } ] } diff --git a/items/ASHFANG_MINIBOSS.json b/items/ASHFANG_MINIBOSS.json index f6747b69..b79af713 100644 --- a/items/ASHFANG_MINIBOSS.json +++ b/items/ASHFANG_MINIBOSS.json @@ -48,6 +48,10 @@ { "id": "FIRE_VEIL_WAND:1", "chance": "0.5%" + }, + { + "id": "DYE_CYCLAMEN", + "chance": "0.0004%" } ] } diff --git a/items/BARBARIAN_DUKE_X_MINIBOSS.json b/items/BARBARIAN_DUKE_X_MINIBOSS.json index ce0dc1aa..3f3b8b6b 100644 --- a/items/BARBARIAN_DUKE_X_MINIBOSS.json +++ b/items/BARBARIAN_DUKE_X_MINIBOSS.json @@ -47,6 +47,10 @@ { "id": "FLAMING_FIST", "chance": "0.2%" + }, + { + "id": "DYE_CYCLAMEN", + "chance": "0.0004%" } ] } diff --git a/items/BEZAL_MONSTER.json b/items/BEZAL_MONSTER.json index f6c6a296..de8f5e32 100644 --- a/items/BEZAL_MONSTER.json +++ b/items/BEZAL_MONSTER.json @@ -58,6 +58,10 @@ "id": "RAMPART_BOOTS:1", "extra": [], "chance": "0.2%" + }, + { + "id": "DYE_CYCLAMEN", + "chance": "0.00001%" } ] } diff --git a/items/BLADESOUL_MINIBOSS.json b/items/BLADESOUL_MINIBOSS.json index 713b9298..9eb2ef15 100644 --- a/items/BLADESOUL_MINIBOSS.json +++ b/items/BLADESOUL_MINIBOSS.json @@ -52,6 +52,10 @@ { "id": "RAGNAROCK_AXE:1", "chance": "0.5%" + }, + { + "id": "DYE_CYCLAMEN", + "chance": "0.0004%" } ] } diff --git a/items/BLAZE_MONSTER.json b/items/BLAZE_MONSTER.json index 89a6b03a..8cd0dd69 100644 --- a/items/BLAZE_MONSTER.json +++ b/items/BLAZE_MONSTER.json @@ -35,7 +35,7 @@ "chance": "100%" }, { - "id": "DYE_FLAME:1", + "id": "DYE_CYCLAMEN", "chance": "0.00001%" } ] @@ -57,7 +57,7 @@ "chance": "100%" }, { - "id": "DYE_FLAME:1", + "id": "DYE_CYCLAMEN", "chance": "0.00001%" } ] @@ -104,7 +104,7 @@ "chance": "0.05%" }, { - "id": "DYE_FLAME:1", + "id": "DYE_CYCLAMEN", "chance": "0.00001%" } ] diff --git a/items/CARROT_KING_SC.json b/items/CARROT_KING_SC.json index 787d3329..b4ec7593 100644 --- a/items/CARROT_KING_SC.json +++ b/items/CARROT_KING_SC.json @@ -66,6 +66,11 @@ { "id": "PET_ITEM_LUCKY_CLOVER_DROP |
