forked from xemnes/twilightforest
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
920632c
commit 37ce0b6
Showing
2 changed files
with
46 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package twilightforest.compat; | ||
|
||
import c4.conarm.common.armor.traits.ArmorTraits; | ||
import c4.conarm.lib.materials.ArmorMaterials; | ||
import c4.conarm.lib.materials.CoreMaterialStats; | ||
import c4.conarm.lib.materials.PlatesMaterialStats; | ||
import c4.conarm.lib.materials.TrimMaterialStats; | ||
import slimeknights.tconstruct.library.TinkerRegistry; | ||
|
||
public class ConstructsArmory { | ||
static void preInit() { | ||
TinkerRegistry.addMaterialStats(TConstruct.ironwood, | ||
new CoreMaterialStats(2.5F, 3), | ||
new PlatesMaterialStats(1, 1, 0), | ||
new TrimMaterialStats(0.5F) | ||
); | ||
} | ||
|
||
static void init() { | ||
ArmorMaterials.addArmorTrait(TConstruct.ironwood, ArmorTraits.ecological); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters