Skip to content

Commit 143280e

Browse files
authored
Add files via upload
1 parent c2549c1 commit 143280e

File tree

84 files changed

+636
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+636
-0
lines changed

META-INF/MANIFEST.MF

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Manifest-Version: 1.0
2+

META-INF/mods.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
modLoader="javafml"
2+
loaderVersion="[47,)"
3+
license="GNU General Public License version 3 (GPLv3)"
4+
5+
[[mods]]
6+
modId="hyper_ore"
7+
version="0.8"
8+
displayName="Hyper Ore"
9+
displayURL="https://mcreator.net"
10+
logoFile="logo.png"
11+
credits="Authorized Distrobution: TimeWorkStudio/TWS"
12+
authors="TimeWorkStudio, Distro ED864F From Modrinth"
13+
description="Adds Better-Than-Netherite ores into the game!"
14+
15+
# Start of user code block mod configuration
16+
# End of user code block mod configuration
17+
18+
[[dependencies.hyper_ore]]
19+
modId="minecraft"
20+
mandatory=true
21+
versionRange="[1.20.1]"
22+
ordering="AFTER"
23+
side="BOTH"
24+
25+
26+
27+
28+
# Start of user code block dependencies configuration
29+
# End of user code block dependencies configuration
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"variants": {
3+
"": {
4+
"model": "hyper_ore:block/hyperblock"
5+
}
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"variants": {
3+
"": {
4+
"model": "hyper_ore:block/hyperore"
5+
}
6+
}
7+
}

assets/hyper_ore/lang/en_us.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"item.hyper_ore.hyper_armor_leggings": "Hyper Leggings",
3+
"item.hyper_ore.hyper_pickaxe": "Hyper Pickaxe",
4+
"item_group.hyper_ore.hyper_tab": "Hyper Ore",
5+
"block.hyper_ore.hyperore": "Hyper Block",
6+
"block.hyper_ore.hyperblock": "Hyper Ore Block",
7+
"item.hyper_ore.hyper_armor_boots": "Hyper Boots",
8+
"item.hyper_ore.hyper_armor_chestplate": "Hyper Chestplate",
9+
"item.hyper_ore.hyper_hoe": "Hyper Hoe",
10+
"item.hyper_ore.hyper": "Hyper",
11+
"item.hyper_ore.hyper_armor_helmet": "Hyper Helmet",
12+
"item.hyper_ore.hyper_sword": "Hyper Sword",
13+
"item.hyper_ore.hyper_shovel": "Hyper Shovel",
14+
"item.hyper_ore.hyper_axe": "Hyper Axe"
15+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"parent": "block/cube",
3+
"textures": {
4+
"down": "hyper_ore:block/hyperblock",
5+
"up": "hyper_ore:block/hyperblock",
6+
"north": "hyper_ore:block/hyperblock",
7+
"east": "hyper_ore:block/hyperblock",
8+
"south": "hyper_ore:block/hyperblock",
9+
"west": "hyper_ore:block/hyperblock",
10+
"particle": "hyper_ore:block/hyperblock"
11+
},
12+
"render_type": "solid"
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"parent": "block/cube",
3+
"textures": {
4+
"down": "hyper_ore:block/hyperoreblock",
5+
"up": "hyper_ore:block/hyperoreblock",
6+
"north": "hyper_ore:block/hyperoreblock",
7+
"east": "hyper_ore:block/hyperoreblock",
8+
"south": "hyper_ore:block/hyperoreblock",
9+
"west": "hyper_ore:block/hyperoreblock",
10+
"particle": "hyper_ore:block/hyperoreblock"
11+
},
12+
"render_type": "solid"
13+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/handheld",
3+
"textures": {
4+
"layer0": "hyper_ore:item/hyper_item"
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "hyper_ore:item/hyperboots"
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "hyper_ore:item/hyperchestplate"
5+
}
6+
}

0 commit comments

Comments
 (0)