Skip to content

Commit

Permalink
Add Enderite compatibility, closes #88
Browse files Browse the repository at this point in the history
  • Loading branch information
TheIllusiveC4 committed Jun 11, 2024
1 parent e3b820c commit 51080db
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ public boolean matches(ItemStack stack) {
new ResourceLocation("wooden_elytra:textures/entities/wooden_elytra.png"));
}

if (isLoaded.test("lolenderite")) {
ID_TO_TEXTURE.put("lolenderite:enderite_plated_elytra",
new ResourceLocation("lolenderite:textures/entity/enderite_plated_elytra.png"));
}

if (isLoaded.test("netherelytra")) {
ID_TO_TEXTURE.put("netherelytra:netherite_elytra",
new ResourceLocation("netherelytra:textures/entity/netherite_elytra.png"));
Expand Down
28 changes: 28 additions & 0 deletions fabric/src/main/resources/data/trinkets/tags/items/chest/cape.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
"replace": false,
"values": [
"minecraft:elytra",
{
"id": "silentgear:elytra",
"required": false
},
{
"id": "mekanism:hdpe_elytra",
"required": false
},
{
"id": "alexsmobs:tarantula_hawk_elytra",
"required": false
},
{
"id": "wooden_elytra:wooden_elytra",
"required": false
},
{
"id": "mna:spectral_elytra",
"required": false
},
{
"id": "deeperdarker:soul_elytra",
"required": false
Expand All @@ -10,6 +30,10 @@
"id": "enderitemod:enderite_elytra_seperated",
"required": false
},
{
"id": "netherelytra:netherite_elytra",
"required": false
},
{
"id": "lilwings:white_fox_elytra",
"required": false
Expand Down Expand Up @@ -66,6 +90,10 @@
"id": "lilwings:grayling_blooming_elytra",
"required": false
},
{
"id": "lolenderite:enderite_plated_elytra",
"required": false
},
{
"id": "clutter:white_butterfly_elytra",
"required": false
Expand Down
4 changes: 4 additions & 0 deletions forge/src/main/resources/data/curios/tags/items/back.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@
{
"id": "clutter:soul_butterfly_elytra",
"required": false
},
{
"id": "lolenderite:enderite_plated_elytra",
"required": false
}
]
}

0 comments on commit 51080db

Please sign in to comment.