Tetra

Tetra

12M Downloads

Material Compat Request - Oh the biomes you'll go

Nerodon opened this issue ยท 1 comments

commented

This is a list of tools armor and materials for the mod Oh the biomes you'll go that would be nice to support compatibility.

Two materials exist that are used to make the following tools:

Tool ID damage swing speed durability harvest level ItemType Material
Pendorite Sword item:byg:pendorite_sword 7 1.2 2500 5 SwordItem Pendorite
Pendorite Pickaxe item:byg:pendorite_pickaxe 9 1.6 2500 5 PickaxeItem Pendorite
Pendorite Shovel item:byg:pendorite_shovel 7 1.0 2500 5 ShovelItem Pendorite
Pendorite Axe item:byg:pendorite_axe 11 1.0 2500 5 AxeItem Pendorite
Pendorite Battleaxe item:byg:pendorite_battleaxe 12 0.7 2500 5 AxeItem Pendorite
Pendorite Hoe item:byg:pendorite_hoe 5 4.0 2500 5 HoeItem Pendorite

And armor (adding this here even though tetra does not yet have modular armor for posterity purposes)

Armor ID armor toughness maxDamageFactor ItemType Material
Ametrine Helmet item:byg:ametrine_helmet 4 3.2 39 HelmetItem Ametrine
Ametrine Chestplate item:byg:ametrine_chestplate 9 3.2 39 ChestplateItem Ametrine
Ametrine Leggings item:byg:ametrine_leggings 7 3.2 39 LeggingsItem Ametrine
Ametrine Boots item:byg:ametrine_boots 4 3.2 39 BootsItem Ametrine

From the source code for BYG
The Material stats are laid out below

Material ID HarvestLvl Durability maxDamageFactor Efficiency BaseAtkDmg Toughness dmgReduct Enhantability
Pendorite item:byg:pendorite_scraps 5 2500 15 16.0 4 15 {4, 7, 9, 4} 15(tools), 15(armor)
Ametrine item:byg:ametrine_gems 4 64 39 9.5 0.8 25 {1, 4, 5, 2} 25(tools), 12(armor)

Note: Even though ametrine has tool stats, they cannot be used to craft tools with the mod, only armor.

Code references from BYG
Item Registrations
https://github.com/CorgiTaco/BYG/blob/Forge-1.16.X-content/src/main/java/corgiaoc/byg/core/BYGItems.java
Tool Material Stats
https://github.com/CorgiTaco/BYG/blob/Forge-1.16.X-content/src/main/java/corgiaoc/byg/common/properties/items/itemtiers/BYGItemTiers.java
Armor Material Stats
https://github.com/CorgiTaco/BYG/blob/Forge-1.16.X-content/src/main/java/corgiaoc/byg/common/properties/items/itemtiers/BYGArmorTiers.java

As for tiers and other tetra specifics, I am unsure exactly what other stats are needed to come up with.
I would say Pendorite is probably the only relevant material to add at this point and should be similar to and slightly higher stats than netherite for most things as a direct upgrade, which is what BYG had that material as.

None of these tools/armor provide any special effects or abilities.

commented

Thanks for the detailed issue!