Skip to content

Commit

Permalink
remove shearing damage config; fix template chance config
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDeathlyCow committed Jan 26, 2024
1 parent 441f9dc commit a2b7fd0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ public class CombatConfigGroup implements ConfigData {

float packedSnowballVulnerableTypesDamage = 5.0f;

float polarBearShearingDamage = 1.0f;

int frostologerPassiveFreezingPerTick = 2;

float frostologerMaxPassiveFreezing = 0.5f;
Expand Down Expand Up @@ -102,10 +100,6 @@ public float getPackedSnowballVulnerableTypesDamage() {
return packedSnowballVulnerableTypesDamage;
}

public float getPolarBearShearingDamage() {
return polarBearShearingDamage;
}

public int getFrostologerPassiveFreezingPerTick() {
return frostologerPassiveFreezingPerTick;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static void addTemplatesToLoot() {
addTemplateToLoot(
FItems.ICE_SKATE_UPGRADE_TEMPLATE,
new Identifier("chests/village/village_snowy_house"),
config.combatConfig.getFurUpgradeTemplateGenerateChance()
config.combatConfig.getSkateUpgradeTemplateGenerateChance()
);
}

Expand Down
1 change: 0 additions & 1 deletion src/main/resources/assets/frostiful/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@
"text.autoconfig.frostiful.option.combatConfig.packedSnowballFreezeAmount": "Packed snowball freeze amount",
"text.autoconfig.frostiful.option.combatConfig.packedSnowballDamage": "Packed snowball damage",
"text.autoconfig.frostiful.option.combatConfig.packedSnowballVulnerableTypesDamage": "Packed snowball vulnerable types damage",
"text.autoconfig.frostiful.option.combatConfig.polarBearShearingDamage": "Polar bear shearing damage",
"text.autoconfig.frostiful.option.combatConfig.frostologerPassiveFreezingPerTick": "Frostologer passive freezing per tick",
"text.autoconfig.frostiful.option.combatConfig.frostologerMaxPassiveFreezing": "Frostologer max passive freezing percent (0-1)",
"text.autoconfig.frostiful.option.combatConfig.biterFrostBiteMaxAmplifier": "Max Frost Bite Max Amplifier (inclusive)",
Expand Down

0 comments on commit a2b7fd0

Please sign in to comment.