Compare commits

..

8 Commits

Author SHA1 Message Date
535b5150f0 Merge remote-tracking branch 'origin/1.21.1-fabric' into 1.21.1-fabric 2025-03-16 17:51:23 -04:00
283b141193 ham 2025-03-16 17:50:40 -04:00
5d8c40c271 Delete LICENSE
Some checks failed
build / build (push) Has been cancelled
2025-03-15 23:37:15 -04:00
7bcf4ec951 Almost everything I plan on adding is here now.
Some checks failed
build / build (push) Has been cancelled
Currently Missing:
- Glowood Chests
- Foulite and Charcoal Torches
- Ghast Bomb
- Obelisk
- All of the Mobs/Arrows/Boats
- Armor and Bows, and misc mob drops
- Paintings
2025-03-15 20:32:21 -04:00
86bfbe6b15 # Changes
Some checks failed
build / build (push) Has been cancelled
10/03/2025
- added Glowood Logs/planks/leaves/sapling and functional tree data-thing.
- That's kinda it? Basics for adding more items/blocks are being worked on. I think next order of business is finishing up the basic blocks and then working on either items or entity blocks like the furnace or crafting table.

Also decide if armour trims should be a thing, and if so what palettes to use. Also move the paintings off of the old b1.7.3 format art blob into seperate items(?), and add the mobs. After adding proper world gen for tree and ores do dark wheat and food stuffs I guess
2025-03-10 19:04:04 -04:00
c4566b19cf Test ver 2
Some checks failed
build / build (push) Has been cancelled
2025-03-01 14:52:53 -05:00
8b8aa33785 Test ver 1 2025-03-01 14:22:47 -05:00
144603f59d Initial Commit
Some checks are pending
build / build (push) Waiting to run
2025-03-01 14:02:22 -05:00
521 changed files with 7842 additions and 30 deletions

1
.gitignore vendored
View File

@ -31,6 +31,7 @@ bin/
# fabric # fabric
run/ run/
src/main/generated/.cache/
# java # java

View File

@ -11,11 +11,15 @@ base {
} }
repositories { repositories {
// Add repositories to retrieve artifacts from in here. maven { url "https://cursemaven.com/" }
// You should only use this when depending on other mods because maven { url "https://api.modrinth.com/maven" }
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically. maven { url "https://maven.terraformersmc.com/" } // Biolith + ModMenu (Cinderscapes)
// See https://docs.gradle.org/current/userguide/declaring_repositories.html maven { url "https://maven.minecraftforge.net/" } // Terrablender
// for more information about repositories. maven { url "https://maven.shedaniel.me" } // ClothConfig (Cinderscapes)
maven { url "https://maven.kyrptonaught.dev" } // Deeper & Darker
maven { url "https://maven.wispforest.io" } // OwO-Lib (Deeper & Darker)
maven { url "https://maven.ladysnake.org/releases" } // Trinkets, Cardinal Components (Desolation)
maven { url "https://raw.githubusercontent.com/Fuzss/modresources/main/maven"} // Fuzs stuff
} }
fabricApi { fabricApi {
@ -28,11 +32,19 @@ dependencies {
// To change the versions see the gradle.properties file // To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}" minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
//mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway. // Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modApi "com.terraformersmc:biolith-fabric:3.0.0-alpha.1"
modApi "com.terraformersmc:modmenu:11.0.1"
modApi "com.terraformersmc.terraform-api:terraform-biome-remapper-api-v1:11.0.0-alpha.1"
modApi "com.terraformersmc.terraform-api:terraform-shapes-api-v1:11.0.0-alpha.1"
modApi "com.terraformersmc.terraform-api:terraform-wood-api-v1:11.0.0-alpha.1"
include "com.terraformersmc.terraform-api:terraform-wood-api-v1:11.0.0-alpha.1"
modApi "me.shedaniel.cloth:cloth-config-fabric:15.0.127"
} }
processResources { processResources {

View File

@ -4,14 +4,14 @@ org.gradle.parallel=true
# Fabric Properties # Fabric Properties
# check these on https://fabricmc.net/develop # check these on https://fabricmc.net/develop
minecraft_version=1.21.4 minecraft_version=1.21.1
yarn_mappings=1.21.4+build.8 yarn_mappings=1.21.1+build.3
loader_version=0.16.10 loader_version=0.16.10
# Mod Properties # Mod Properties
mod_version=0.1.0 mod_version=1.0.0
maven_group=xyz.ibatv.nethercraft maven_group=xyz.ibatv.nethercraft
archives_base_name=nethercraft-classic archives_base_name=nethercraft-classic
# Dependencies # Dependencies
fabric_version=0.118.0+1.21.4 fabric_version=0.115.1+1.21.1

View File

@ -0,0 +1,22 @@
{
"variants": {
"age=0": {
"model": "nethercraft-classic:block/dark_wheat_crop_stage0"
},
"age=1": {
"model": "nethercraft-classic:block/dark_wheat_crop_stage1"
},
"age=2": {
"model": "nethercraft-classic:block/dark_wheat_crop_stage2"
},
"age=3": {
"model": "nethercraft-classic:block/dark_wheat_crop_stage3"
},
"age=4": {
"model": "nethercraft-classic:block/dark_wheat_crop_stage4"
},
"age=5": {
"model": "nethercraft-classic:block/dark_wheat_crop_stage5"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/foulite_ore"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/glowood_bookshelf"
}
}
}

View File

@ -0,0 +1,124 @@
{
"variants": {
"facing=east,half=lower,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_left"
},
"facing=east,half=lower,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_left_open",
"y": 90
},
"facing=east,half=lower,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_right"
},
"facing=east,half=lower,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_right_open",
"y": 270
},
"facing=east,half=upper,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_left"
},
"facing=east,half=upper,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_left_open",
"y": 90
},
"facing=east,half=upper,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_right"
},
"facing=east,half=upper,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_right_open",
"y": 270
},
"facing=north,half=lower,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_left",
"y": 270
},
"facing=north,half=lower,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_left_open"
},
"facing=north,half=lower,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_right",
"y": 270
},
"facing=north,half=lower,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_right_open",
"y": 180
},
"facing=north,half=upper,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_left",
"y": 270
},
"facing=north,half=upper,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_left_open"
},
"facing=north,half=upper,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_right",
"y": 270
},
"facing=north,half=upper,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_right_open",
"y": 180
},
"facing=south,half=lower,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_left",
"y": 90
},
"facing=south,half=lower,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_left_open",
"y": 180
},
"facing=south,half=lower,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_right",
"y": 90
},
"facing=south,half=lower,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_right_open"
},
"facing=south,half=upper,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_left",
"y": 90
},
"facing=south,half=upper,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_left_open",
"y": 180
},
"facing=south,half=upper,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_right",
"y": 90
},
"facing=south,half=upper,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_right_open"
},
"facing=west,half=lower,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_left",
"y": 180
},
"facing=west,half=lower,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_left_open",
"y": 270
},
"facing=west,half=lower,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_bottom_right",
"y": 180
},
"facing=west,half=lower,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_bottom_right_open",
"y": 90
},
"facing=west,half=upper,hinge=left,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_left",
"y": 180
},
"facing=west,half=upper,hinge=left,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_left_open",
"y": 270
},
"facing=west,half=upper,hinge=right,open=false": {
"model": "nethercraft-classic:block/glowood_door_top_right",
"y": 180
},
"facing=west,half=upper,hinge=right,open=true": {
"model": "nethercraft-classic:block/glowood_door_top_right_open",
"y": 90
}
}
}

View File

@ -0,0 +1,48 @@
{
"multipart": [
{
"apply": {
"model": "nethercraft-classic:block/glowood_fence_post"
}
},
{
"apply": {
"model": "nethercraft-classic:block/glowood_fence_side",
"uvlock": true
},
"when": {
"north": "true"
}
},
{
"apply": {
"model": "nethercraft-classic:block/glowood_fence_side",
"uvlock": true,
"y": 90
},
"when": {
"east": "true"
}
},
{
"apply": {
"model": "nethercraft-classic:block/glowood_fence_side",
"uvlock": true,
"y": 180
},
"when": {
"south": "true"
}
},
{
"apply": {
"model": "nethercraft-classic:block/glowood_fence_side",
"uvlock": true,
"y": 270
},
"when": {
"west": "true"
}
}
]
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/glowood_leaves"
}
}
}

View File

@ -0,0 +1,16 @@
{
"variants": {
"axis=x": {
"model": "nethercraft-classic:block/glowood_log_horizontal",
"x": 90,
"y": 90
},
"axis=y": {
"model": "nethercraft-classic:block/glowood_log"
},
"axis=z": {
"model": "nethercraft-classic:block/glowood_log_horizontal",
"x": 90
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/glowood_planks"
}
}
}

View File

@ -0,0 +1,10 @@
{
"variants": {
"powered=false": {
"model": "nethercraft-classic:block/glowood_pressureplate"
},
"powered=true": {
"model": "nethercraft-classic:block/glowood_pressureplate_down"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/glowood_sapling"
}
}
}

View File

@ -0,0 +1,209 @@
{
"variants": {
"facing=east,half=bottom,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"y": 270
},
"facing=east,half=bottom,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner"
},
"facing=east,half=bottom,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"y": 270
},
"facing=east,half=bottom,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer"
},
"facing=east,half=bottom,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs"
},
"facing=east,half=top,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180
},
"facing=east,half=top,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180,
"y": 90
},
"facing=east,half=top,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180
},
"facing=east,half=top,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180,
"y": 90
},
"facing=east,half=top,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs",
"uvlock": true,
"x": 180
},
"facing=north,half=bottom,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"y": 180
},
"facing=north,half=bottom,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"y": 270
},
"facing=north,half=bottom,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"y": 180
},
"facing=north,half=bottom,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"y": 270
},
"facing=north,half=bottom,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs",
"uvlock": true,
"y": 270
},
"facing=north,half=top,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180,
"y": 270
},
"facing=north,half=top,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180
},
"facing=north,half=top,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180,
"y": 270
},
"facing=north,half=top,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180
},
"facing=north,half=top,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs",
"uvlock": true,
"x": 180,
"y": 270
},
"facing=south,half=bottom,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner"
},
"facing=south,half=bottom,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"y": 90
},
"facing=south,half=bottom,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer"
},
"facing=south,half=bottom,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"y": 90
},
"facing=south,half=bottom,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs",
"uvlock": true,
"y": 90
},
"facing=south,half=top,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180,
"y": 90
},
"facing=south,half=top,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180,
"y": 180
},
"facing=south,half=top,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180,
"y": 90
},
"facing=south,half=top,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180,
"y": 180
},
"facing=south,half=top,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs",
"uvlock": true,
"x": 180,
"y": 90
},
"facing=west,half=bottom,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"y": 90
},
"facing=west,half=bottom,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"y": 180
},
"facing=west,half=bottom,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"y": 90
},
"facing=west,half=bottom,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"y": 180
},
"facing=west,half=bottom,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs",
"uvlock": true,
"y": 180
},
"facing=west,half=top,shape=inner_left": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180,
"y": 180
},
"facing=west,half=top,shape=inner_right": {
"model": "nethercraft-classic:block/glowood_stairs_inner",
"uvlock": true,
"x": 180,
"y": 270
},
"facing=west,half=top,shape=outer_left": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180,
"y": 180
},
"facing=west,half=top,shape=outer_right": {
"model": "nethercraft-classic:block/glowood_stairs_outer",
"uvlock": true,
"x": 180,
"y": 270
},
"facing=west,half=top,shape=straight": {
"model": "nethercraft-classic:block/glowood_stairs",
"uvlock": true,
"x": 180,
"y": 180
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/heat_sand"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/linium_block"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/linium_ore"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/neridium_block"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/neridium_ore"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/nether_dirt"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/nether_glass"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/pyridium_block"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/pyridium_ore"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/slow_glass"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/smooth_netherrack"
}
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nethercraft-classic:block/w_ore"
}
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "nethercraft-classic:block/dark_wheat_crop_stage0"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "nethercraft-classic:block/dark_wheat_crop_stage1"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "nethercraft-classic:block/dark_wheat_crop_stage2"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "nethercraft-classic:block/dark_wheat_crop_stage3"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "nethercraft-classic:block/dark_wheat_crop_stage4"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "nethercraft-classic:block/dark_wheat_crop_stage5"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/foulite_ore"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/cube_column",
"textures": {
"end": "nethercraft-classic:block/glowood_planks",
"side": "nethercraft-classic:block/glowood_bookshelf"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/cube_column_horizontal",
"textures": {
"end": "nethercraft-classic:block/glowood_bookshelf_top",
"side": "nethercraft-classic:block/glowood_bookshelf"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_bottom_left",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_bottom_left_open",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_bottom_right",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_bottom_right_open",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_top_left",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_top_left_open",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_top_right",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_top_right_open",
"textures": {
"bottom": "nethercraft-classic:block/glowood_door_bottom",
"top": "nethercraft-classic:block/glowood_door_top"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/fence_inventory",
"textures": {
"texture": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/fence_post",
"textures": {
"texture": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/fence_side",
"textures": {
"texture": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/leaves",
"textures": {
"all": "nethercraft-classic:block/glowood_leaves"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/cube_column",
"textures": {
"end": "nethercraft-classic:block/glowood_log_top",
"side": "nethercraft-classic:block/glowood_log"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/cube_column_horizontal",
"textures": {
"end": "nethercraft-classic:block/glowood_log_top",
"side": "nethercraft-classic:block/glowood_log"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/pressure_plate_up",
"textures": {
"texture": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/pressure_plate_down",
"textures": {
"texture": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cross",
"textures": {
"cross": "nethercraft-classic:block/glowood_sapling"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/stairs",
"textures": {
"bottom": "nethercraft-classic:block/glowood_planks",
"side": "nethercraft-classic:block/glowood_planks",
"top": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/inner_stairs",
"textures": {
"bottom": "nethercraft-classic:block/glowood_planks",
"side": "nethercraft-classic:block/glowood_planks",
"top": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/outer_stairs",
"textures": {
"bottom": "nethercraft-classic:block/glowood_planks",
"side": "nethercraft-classic:block/glowood_planks",
"top": "nethercraft-classic:block/glowood_planks"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/heat_sand"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/linium_block"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/linium_ore"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/neridium_block"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/neridium_ore"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/nether_dirt"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/nether_glass"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/pyridium_block"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/pyridium_ore"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/slow_glass"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/smooth_netherrack"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nethercraft-classic:block/w_ore"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/dark_wheat"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/dark_wheat_seeds"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/devilbread"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/foulite_dust"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/foulite_ore"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/glow_apple"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/glowood_axe"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/glowood_bookshelf"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/glowood_bowl"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/glowood_door"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/glowood_fence_inventory"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/glowood_hoe"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/glowood_leaves"
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/glowood_log"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/glowood_pickaxe"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/glowood_planks"
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/glowood_pressureplate"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/glowood_sapling"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/glowood_shovel"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/glowood_stairs"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/glowood_sword"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/glowstew"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/heat_sand"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/imp_skin"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/lava_book"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/lava_paper"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/linium_axe"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/linium_block"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/linium_hoe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "nethercraft-classic:item/linium_ingot"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "nethercraft-classic:block/linium_ore"
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nethercraft-classic:item/linium_pickaxe"
}
}

Some files were not shown because too many files have changed in this diff Show More