Skip to content

Commit 891e33f

Browse files
committed
Update the armors so they're visible
1 parent 3da0caa commit 891e33f

File tree

35 files changed

+144
-6
lines changed

35 files changed

+144
-6
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ yarn_mappings=1.21.5+build.1
99
loader_version=0.16.14
1010

1111
# Mod Properties
12-
mod_version=0.8.2
12+
mod_version=0.8.3
1313
maven_group=barch.mc_extended
1414
archives_base_name=mc-extended
1515

1616
# Dependencies
17-
fabric_version=0.121.0+1.21.5
17+
fabric_version=0.124.2+1.21.5
1818
barch_version=6476654

src/main/java/barch/mc_extended/Tags.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static class EaKeys {
5050
}
5151

5252
static RegistryKey<EquipmentAsset> registerEaKey(String name) {
53-
return RegistryKey.of(REGISTRY_KEY, Identifier.ofVanilla(name));
53+
return RegistryKey.of(REGISTRY_KEY, Identifier.of(MC_EXTENDED, name));
5454
}
5555

5656
private static TagKey<Biome> ofBiome(String namespace, String path) {
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"layers": {
3+
"horse_body": [
4+
{
5+
"texture": "mc-extended:bronze"
6+
}
7+
],
8+
"humanoid": [
9+
{
10+
"texture": "mc-extended:bronze"
11+
}
12+
],
13+
"humanoid_leggings": [
14+
{
15+
"texture": "mc-extended:bronze"
16+
}
17+
]
18+
}
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"layers": {
3+
"horse_body": [
4+
{
5+
"texture": "mc-extended:copper"
6+
}
7+
],
8+
"humanoid": [
9+
{
10+
"texture": "mc-extended:copper"
11+
}
12+
],
13+
"humanoid_leggings": [
14+
{
15+
"texture": "mc-extended:copper"
16+
}
17+
]
18+
}
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"layers": {
3+
"horse_body": [
4+
{
5+
"texture": "mc-extended:corundum"
6+
}
7+
],
8+
"humanoid": [
9+
{
10+
"texture": "mc-extended:corundum"
11+
}
12+
],
13+
"humanoid_leggings": [
14+
{
15+
"texture": "mc-extended:corundum"
16+
}
17+
]
18+
}
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"layers": {
3+
"horse_body": [
4+
{
5+
"texture": "mc-extended:ruby"
6+
}
7+
],
8+
"humanoid": [
9+
{
10+
"texture": "mc-extended:ruby"
11+
}
12+
],
13+
"humanoid_leggings": [
14+
{
15+
"texture": "mc-extended:ruby"
16+
}
17+
]
18+
}
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"layers": {
3+
"horse_body": [
4+
{
5+
"texture": "mc-extended:sapphire"
6+
}
7+
],
8+
"humanoid": [
9+
{
10+
"texture": "mc-extended:sapphire"
11+
}
12+
],
13+
"humanoid_leggings": [
14+
{
15+
"texture": "mc-extended:sapphire"
16+
}
17+
]
18+
}
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"layers": {
3+
"horse_body": [
4+
{
5+
"texture": "mc-extended:silver"
6+
}
7+
],
8+
"humanoid": [
9+
{
10+
"texture": "mc-extended:silver"
11+
}
12+
],
13+
"humanoid_leggings": [
14+
{
15+
"texture": "mc-extended:silver"
16+
}
17+
]
18+
}
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"layers": {
3+
"horse_body": [
4+
{
5+
"texture": "mc-extended:tin"
6+
}
7+
],
8+
"humanoid": [
9+
{
10+
"texture": "mc-extended:tin"
11+
}
12+
],
13+
"humanoid_leggings": [
14+
{
15+
"texture": "mc-extended:tin"
16+
}
17+
]
18+
}
19+
}

0 commit comments

Comments
 (0)