diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-12-25 16:56:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-25 16:56:32 +0100 |
commit | d49bfe885bca2f3dc88639e5bf1fd0d488ebde32 (patch) | |
tree | 6b5eb8312f31fbe62dc6426c4b8d98f3be1d1e1b | |
parent | c4997e21053c8671ed4c5474fb70df6ae58dae06 (diff) | |
download | Firmament-d49bfe885bca2f3dc88639e5bf1fd0d488ebde32.tar.gz Firmament-d49bfe885bca2f3dc88639e5bf1fd0d488ebde32.tar.bz2 Firmament-d49bfe885bca2f3dc88639e5bf1fd0d488ebde32.zip |
feat: More Stats for the reforge stats (#54)
-rw-r--r-- | src/main/kotlin/repo/SBItemStack.kt | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/src/main/kotlin/repo/SBItemStack.kt b/src/main/kotlin/repo/SBItemStack.kt index 3c59543..20f2618 100644 --- a/src/main/kotlin/repo/SBItemStack.kt +++ b/src/main/kotlin/repo/SBItemStack.kt @@ -140,8 +140,35 @@ data class SBItemStack constructor( "Ability Damage" to StatFormatting("%", Formatting.RED), "Crit Damage" to StatFormatting("%", Formatting.RED), "Crit Chance" to StatFormatting("%", Formatting.RED), + "Ability Damage" to StatFormatting("%", Formatting.RED), "Trophy Fish Chance" to StatFormatting("%", Formatting.GREEN), - // TODO: add other types and make this a repo json + "Health" to StatFormatting("", Formatting.GREEN), + "Defense" to StatFormatting("", Formatting.GREEN), + "Fishing Speed" to StatFormatting("", Formatting.GREEN), + "Double Hook Chance" to StatFormatting("%", Formatting.GREEN), + "Mining Speed" to StatFormatting("", Formatting.GREEN), + "Mining Fortune" to StatFormatting("", Formatting.GREEN), + "Heat Resistance" to StatFormatting("", Formatting.GREEN), + "Swing Range" to StatFormatting("", Formatting.GREEN), + "Rift Time" to StatFormatting("", Formatting.GREEN), + "Speed" to StatFormatting("", Formatting.GREEN), + "Farming Fortune" to StatFormatting("", Formatting.GREEN), + "True Defense" to StatFormatting("", Formatting.GREEN), + "Mending" to StatFormatting("", Formatting.GREEN), + "Foraging Wisdom" to StatFormatting("", Formatting.GREEN), + "Farming Wisdom" to StatFormatting("", Formatting.GREEN), + "Foraging Fortune" to StatFormatting("", Formatting.GREEN), + "Magic Find" to StatFormatting("", Formatting.GREEN), + "Ferocity" to StatFormatting("", Formatting.GREEN), + "Bonus Pest Chance" to StatFormatting("%", Formatting.GREEN), + "Cold Resistance" to StatFormatting("", Formatting.GREEN), + "Pet Luck" to StatFormatting("", Formatting.GREEN), + "Fear" to StatFormatting("", Formatting.GREEN), + "Mana Regen" to StatFormatting("%", Formatting.GREEN), + "Rift Damage" to StatFormatting("", Formatting.GREEN), + "Hearts" to StatFormatting("", Formatting.GREEN), + "Vitality" to StatFormatting("", Formatting.GREEN), + // TODO: make this a repo json ) |