Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Elephant1214 committed Apr 6, 2023
1 parent e9b9df4 commit 862ce20
Show file tree
Hide file tree
Showing 14 changed files with 190 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,10 @@ bin/

run/
runServer/

# Python scripts

create_block_models.py
create_blockstates.py
create_item_models.py
create_recipes.py
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ theName=Not Enough Variations (1.12.2)
mod_name=Not Enough Variations
archive_name=NotEnoughVariations
mod_group=nathan.notenoughvariations
mod_version=0.3.3
mod_version=0.4.0
mcversion=1.12.2
mod_id=nev

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public class NotEnoughVariations {
public static final String MODID = "nev";
public static final String NAME = "Not Enough Variations";
public static final String VERSION = "0.3.4";
public static final String VERSION = "0.4.0";
public static final Logger LOGGER = LogManager.getLogger(NotEnoughVariations.MODID);
public static final CreativeTabs NOT_ENOUGH_VARIATIONS = new NevTab(MODID + ".not_enough_variations");
@SidedProxy(clientSide = "nathan.notenoughvariations.proxy.ClientProxy", serverSide = "nathan.notenoughvariations.proxy.ServerProxy")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"DDD"
],
"key": {
"D": {
"item": "minecraft:diamond_block",
"data": 0
}
},
"result": {
"item": "nev:diamond_slab",
"count": 6,
"data": 0
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"EEE"
],
"key": {
"E": {
"item": "minecraft:emerald_block",
"data": 0
}
},
"result": {
"item": "nev:emerald_slab",
"count": 6,
"data": 0
}
}
17 changes: 17 additions & 0 deletions src/main/resources/assets/nev/recipes/blocks/slabs/gold_slab.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"GGG"
],
"key": {
"G": {
"item": "minecraft:gold_block",
"data": 0
}
},
"result": {
"item": "nev:gold_slab",
"count": 6,
"data": 0
}
}
17 changes: 17 additions & 0 deletions src/main/resources/assets/nev/recipes/blocks/slabs/iron_slab.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"III"
],
"key": {
"I": {
"item": "minecraft:iron_block",
"data": 0
}
},
"result": {
"item": "nev:iron_slab",
"count": 6,
"data": 0
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"RRR"
],
"key": {
"R": {
"item": "minecraft:redstone_block",
"data": 0
}
},
"result": {
"item": "nev:redstone_slab",
"count": 6,
"data": 0
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"D ",
"DD ",
"DDD"
],
"key": {
"D": {
"item": "minecraft:diamond_block",
"data": 0
}
},
"result": {
"item": "nev:diamond_stairs",
"count": 4,
"data": 0
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"E ",
"EE ",
"EEE"
],
"key": {
"E": {
"item": "minecraft:emerald_block",
"data": 0
}
},
"result": {
"item": "nev:emerald_stairs",
"count": 4,
"data": 0
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"G ",
"GG ",
"GGG"
],
"key": {
"G": {
"item": "minecraft:gold_block",
"data": 0
}
},
"result": {
"item": "nev:gold_stairs",
"count": 4,
"data": 0
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"I ",
"II ",
"III"
],
"key": {
"I": {
"item": "minecraft:iron_block",
"data": 0
}
},
"result": {
"item": "nev:iron_stairs",
"count": 4,
"data": 0
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"R ",
"RR ",
"RRR"
],
"key": {
"R": {
"item": "minecraft:redstone_block",
"data": 0
}
},
"result": {
"item": "nev:redstone_stairs",
"count": 4,
"data": 0
}
}
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "nev",
"name": "Not Enough Variations",
"description": "A simple mod that adds variations of blocks that are seemingly missing from the game.",
"version": "0.3.4",
"version": "0.4.0",
"mcversion": "1.12.2",
"url": "https://www.curseforge.com/minecraft/mc-mods/not-enough-variations",
"updateUrl": "",
Expand Down

0 comments on commit 862ce20

Please sign in to comment.