-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch something but I won't know how I've done that...
- Loading branch information
Showing
15 changed files
with
64 additions
and
2 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
common/src/main/resources/assets/copper_extension/lang/en_us.json
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,9 @@ | ||
{ | ||
"item.copper_extension.exposed_copper_ingot": "Exposed Copper Ingot", | ||
"item.copper_extension.oxidized_copper_ingot": "Oxidized Copper Ingot", | ||
"item.copper_extension.waxed_copper_ingot": "Waxed Copper Ingot", | ||
"item.copper_extension.waxed_exposed_copper_ingot": "Waxed Exposed Copper Ingot", | ||
"item.copper_extension.waxed_weathered_copper_ingot": "Waxed Weathered Copper Ingot", | ||
"item.copper_extension.weathered_copper_ingot": "Weathered Copper Ingot", | ||
"gamerule.copperOxidationChance": "Copper oxidation chance" | ||
} |
9 changes: 9 additions & 0 deletions
9
common/src/main/resources/assets/copper_extension/lang/fr_fr.json
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,9 @@ | ||
{ | ||
"item.copper_extension.exposed_copper_ingot": "Lingot de cuivre exposé", | ||
"item.copper_extension.oxidized_copper_ingot": "Lingot de cuivre oxydé", | ||
"item.copper_extension.waxed_copper_ingot": "Lingot de cuivre ciré", | ||
"item.copper_extension.waxed_exposed_copper_ingot": "Lingot de cuivre exposé et ciré", | ||
"item.copper_extension.waxed_weathered_copper_ingot": "Lingot de cuivre érodé et ciré", | ||
"item.copper_extension.weathered_copper_ingot": "Lingot de cuivre érodé", | ||
"gamerule.copperOxidationChance": "Chance d'érosion du cuivre" | ||
} |
8 changes: 8 additions & 0 deletions
8
common/src/main/resources/assets/copper_extension/lang/zh_cn.json
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,8 @@ | ||
{ | ||
"item.copper_extension.exposed_copper_ingot": "斑驳的铜锭", | ||
"item.copper_extension.oxidized_copper_ingot": "氧化的铜锭", | ||
"item.copper_extension.waxed_copper_ingot": "涂蜡的铜锭", | ||
"item.copper_extension.waxed_exposed_copper_ingot": "涂蜡的斑驳铜锭", | ||
"item.copper_extension.waxed_weathered_copper_ingot": "涂蜡的锈蚀铜锭", | ||
"item.copper_extension.weathered_copper_ingot": "锈蚀的铜锭" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions
6
common/src/main/resources/assets/copper_extension/models/item/exposed_copper_ingot.json
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,6 @@ | ||
{ | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "copper_extension:item/exposed_copper_ingot" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
common/src/main/resources/assets/copper_extension/models/item/oxidized_copper_ingot.json
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,6 @@ | ||
{ | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "copper_extension:item/oxidized_copper_ingot" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
common/src/main/resources/assets/copper_extension/models/item/waxed_copper_ingot.json
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,6 @@ | ||
{ | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "minecraft:item/copper_ingot" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
...on/src/main/resources/assets/copper_extension/models/item/waxed_exposed_copper_ingot.json
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,6 @@ | ||
{ | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "copper_extension:item/exposed_copper_ingot" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
.../src/main/resources/assets/copper_extension/models/item/waxed_weathered_copper_ingot.json
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,6 @@ | ||
{ | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "copper_extension:item/weathered_copper_ingot" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
common/src/main/resources/assets/copper_extension/models/item/weathered_copper_ingot.json
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,6 @@ | ||
{ | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "copper_extension:item/weathered_copper_ingot" | ||
} | ||
} |
Binary file added
BIN
+5.67 KB
...c/main/resources/assets/copper_extension/textures/item/exposed_copper_ingot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+275 Bytes
.../main/resources/assets/copper_extension/textures/item/oxidized_copper_ingot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+270 Bytes
...main/resources/assets/copper_extension/textures/item/weathered_copper_ingot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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