added blaze- gun- green birch block and dirt sword
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "nec:block/blaze_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "nec:block/green_birch_log_horizontal",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "nec:block/green_birch_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "nec:block/green_birch_log_horizontal",
|
||||
"x": 90
|
||||
}
|
||||
}
|
||||
}
|
7
src/main/resources/assets/nec/blockstates/gun_block.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "nec:block/gun_block"
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 453 B After Width: | Height: | Size: 3.5 KiB |
10
src/main/resources/assets/nec/lang/en_us.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"block.nec.blaze_block": "Blaze Block",
|
||||
"block.nec.cursed_dirt_stairs": "Cursed Dirt Stairs",
|
||||
"block.nec.cursed_dirt_slab": "Cursed Dirt Slab",
|
||||
"block.nec.cursed_dirt": "Cursed Dirt",
|
||||
"block.nec.green_birch_log": "Green Birch Log",
|
||||
"block.nec.gun_block": "Gun Block",
|
||||
"item.nec.dirt_sword": "Dirt Sword",
|
||||
"itemGroup.nec.not_enough_cursedness": "Not Enough Cursedness"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "nec:block/blaze_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_column",
|
||||
"textures": {
|
||||
"end": "nec:block/green_birch_log_top",
|
||||
"side": "nec:block/green_birch_log"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_column_horizontal",
|
||||
"textures": {
|
||||
"end": "nec:block/green_birch_log_top",
|
||||
"side": "nec:block/green_birch_log"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "nec:block/gun_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "nec:block/blaze_block"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "nec:item/dirt_sword"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "nec:block/green_birch_log"
|
||||
}
|
3
src/main/resources/assets/nec/models/item/gun_block.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "nec:block/gun_block"
|
||||
}
|
BIN
src/main/resources/assets/nec/textures/block/blaze_block.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
src/main/resources/assets/nec/textures/block/green_birch_log.png
Normal file
After Width: | Height: | Size: 158 B |
After Width: | Height: | Size: 463 B |
BIN
src/main/resources/assets/nec/textures/block/gun_block.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
src/main/resources/assets/nec/textures/item/dirt_sword.png
Normal file
After Width: | Height: | Size: 373 B |
7
src/main/resources/data/minecraft/tags/blocks/axe.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"nec:green_birch_log"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "nec:green_birch_log"
|
||||
}
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
18
src/main/resources/data/nec/recipes/blaze_block.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "minecraft:blaze_powder"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"###",
|
||||
"###"
|
||||
],
|
||||
"result": {
|
||||
"item": "nec:blaze_block"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
12
src/main/resources/data/nec/recipes/blaze_rod.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "nec:blaze_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:blaze_powder",
|
||||
"count": 9
|
||||
}
|
||||
}
|
22
src/main/resources/data/nec/recipes/crossbow.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"ABA",
|
||||
" C ",
|
||||
" "
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "minecraft:tripwire_hook"
|
||||
},
|
||||
"B": {
|
||||
"item": "minecraft:string"
|
||||
},
|
||||
"C": {
|
||||
"item": "minecraft:bow"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:crossbow"
|
||||
}
|
||||
}
|
19
src/main/resources/data/nec/recipes/diamond_ore.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"ABA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "minecraft:stone"
|
||||
},
|
||||
"B": {
|
||||
"item": "minecraft:diamond"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:diamond_ore"
|
||||
}
|
||||
}
|
19
src/main/resources/data/nec/recipes/dirt_sword.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" A ",
|
||||
" A ",
|
||||
" B "
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "minecraft:dirt"
|
||||
},
|
||||
"B": {
|
||||
"item": "minecraft:stick"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "nec:dirt_sword"
|
||||
}
|
||||
}
|
14
src/main/resources/data/nec/recipes/green_birch.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:green_dye"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:birch_log"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "nec:green_birch_log"
|
||||
}
|
||||
}
|
18
src/main/resources/data/nec/recipes/gun_block.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "minecraft:gunpowder"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"###",
|
||||
"###"
|
||||
],
|
||||
"result": {
|
||||
"item": "nec:gun_block"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
12
src/main/resources/data/nec/recipes/gunpowder.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "nec:gun_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:gunpowder",
|
||||
"count": 9
|
||||
}
|
||||
}
|
14
src/main/resources/data/nec/recipes/zombie_spawn_egg.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:zombie_head"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:egg"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:zombie_spawn_egg"
|
||||
}
|
||||
}
|