Skip to content

Commit

Permalink
Merge branch '1.20.1/dev' into 1.20.1/fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
bibi-reden committed Oct 12, 2024
2 parents e4870cd + d94165d commit 58fc585
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 32 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Changes 🌽
- Patched to work with Data Attributes `2.X.X+1.20.1`. Update to that for this to work.
- Integrate back all of the attributes and their proper diminishing factor according to **BalanceEX** and some suggestions.
- Fixed attributes that were **NOT** meant to be diminishing.
- Fixed attributes which were not formatted to be percentages to actually display as them.
- Melee Crit Damage
- Health Regeneration
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ parchment_version=1.20.1:2023.09.03
quilt_mappings_version=23

# Mod Properties
mod_version=4.0.0+1.20.1-beta.7
mod_version=4.0.0+1.20.1-beta.8
maven_group=com.bibireden.playerex
archives_base_name=playerex-directors-cut

Expand Down
1 change: 0 additions & 1 deletion src/main/resources/assets/playerex/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@
"text.config.playerex-config.category.visualSettings": "Visual Options",
"text.config.playerex-config.option.visualSettings.nameplateColor": "Nameplate Color",

"text.config.playerex-config.option.itemBreakingEnabled": "Item Breaking Enabled",
"text.config.playerex-config.option.resetOnDeath": "Reset on Death",
"text.config.playerex-config.option.skillPointsPerLevelUp": "Skill Points per. Level Up",
"text.config.playerex-config.option.levelFormula": "Leveling Formula",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"spell_power:critical_chance": {
"enabled": true,
"behavior": "Add",
"value": 0.02
"value": 2
}
},
"playerex:dexterity": {
Expand Down Expand Up @@ -90,7 +90,7 @@
"spell_power:haste": {
"enabled": true,
"behavior": "Add",
"value": 2
"value": 1
}
},
"playerex:focus": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"enabled": true,
"min": 0.0,
"max": 1000000.0,
"smoothness": 1.0,
"formula": "Flat"
}
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
"formula": "Diminished",
"format": "Percentage"
},
"playerex:health_regeneration": {
"enabled": true,
"format": "Percentage"
},
"playerex:melee_crit_chance": {
"enabled": true,
"min": 0.0,
Expand All @@ -49,7 +53,8 @@
"min": 0.0,
"max": 1.0,
"smoothness": 0.001,
"formula": "Diminished"
"formula": "Diminished",
"format": "Percentage"
},
"playerex:lifesteal": {
"enabled": true,
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"java": ">=17",
"fabric-api": "*",
"fabric-language-kotlin": ">=1.10.19+kotlin.1.9.23",
"data_attributes": ">=2.0.0+1.20.1-beta.9-fabric",
"data_attributes": ">=2.0.0+1.20.1-fabric",
"ranged_weapon_api": ">=1.1.0+1.20.1"
},
"custom": {
Expand All @@ -97,7 +97,7 @@
"dependencies": [
"fabric-api@>=0.92.2+1.20.1(required){modrinth:P7dR8mSH}{curseforge:306612}#(ignore:github)",
"fabric-language-kotlin@>=1.9.5+kotlin.1.8.22(required){modrinth:Ha28R6CL}{curseforge:308769}#(ignore:github)",
"data-attributes-directors-cut@>=2.0.0+1.20.1-beta.9-fabric(required){modrinth:KCGxOJsE}{curseforge:955929}#(ignore:github)",
"data-attributes-directors-cut@>=2.0.0+1.20.1-fabric(required){modrinth:KCGxOJsE}{curseforge:955929}#(ignore:github)",
"[email protected](required){modrinth:ccKDOlHs}{curseforge:532610}#(ignore:github)",
"ranged_weapon_api@>=1.1.0+1.20.1(required){modrinth:AqaIIO6D}{curseforge:962162}#(ignore:github)",
"[email protected](embedded){modrinth:K01OU20C}{curseforge:318449}#(ignore:github)",
Expand Down

0 comments on commit 58fc585

Please sign in to comment.