Skip to content

Commit

Permalink
Finish 0.4 data
Browse files Browse the repository at this point in the history
  • Loading branch information
a0a7 committed Sep 27, 2023
1 parent 2959194 commit 585992a
Show file tree
Hide file tree
Showing 12 changed files with 130 additions and 27 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
}

version = 'v0.3'
version = 'v0.4'
group = 'systems.alexander.bellsandwhistles' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'bellsandwhistles'

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ issueTrackerURL="https://github.com/alexandsr/BellsAndWhistlesMod/issues"
[[mods]] #mandatory
# The modid of the mod
modId="bellsandwhistles" #mandatory
version="0.3" #mandatory
version="0.4" #mandatory
displayName="Create: Bells & Whistles" #mandatory
displayURL="https://alexandsr.github.io/BellsAndWhistlesMod/"
# A file name (in the root of the mod JAR) containing a logo for display
Expand All @@ -15,7 +15,7 @@ authors="Alexander Akira Weimer" #optional

# The description text for the mod (multi line!) (#mandatory)
description='''
Create: Bells and Whistles is an add-on for Create that adds various decorative and utility features.
Create: Bells & Whistles is an add-on for the Create mod that focuses on the player experience, adding various new decorative and utility features.
'''
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
[[dependencies.bellsandwhistles]] #optional
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"group": "misc",
"pattern": [
"###"
],
"key": {
"#": {
"item": "create:andesite_alloy"
}
},
"result": {
"item": "bellsandwhistles:andesite_door_step",
"count": 8
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "create:andesite_alloy"
},
"result": "bellsandwhistles:andesite_door_step",
"count": 6
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"group": "misc",
"pattern": [
"#I#"
],
"key": {
"#": {
"tag": "forge:ingots/brass"
},
"I": {
"tag": "forge:nuggets/brass"
}
},
"result": {
"item": "bellsandwhistles:brass_door_step",
"count": 8
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"tag": "forge:ingots/brass"
},
"result": "bellsandwhistles:brass_door_step",
"count": 6
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"group": "misc",
"pattern": [
"#I#"
],
"key": {
"#": {
"tag": "forge:ingots/copper"
},
"I": {
"tag": "forge:nuggets/copper"
}
},
"result": {
"item": "bellsandwhistles:copper_door_step",
"count": 8
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"tag": "forge:ingots/copper"
},
"result": "bellsandwhistles:copper_door_step",
"count": 6
}
27 changes: 14 additions & 13 deletions src/main/resources/data/bellsandwhistles/recipes/headlight.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:iron_nugget",
"count": 3
"type":"crafting_shaped",
"pattern": [
"# ",
"#I",
"# "
],
"key":{
"#":{
"item":"minecraft:iron_nugget"
},
{
"item": "minecraft:torch"
"I":{
"item":"minecraft:torch"
}
],
"result": {
"item": "bellsandwhistles:headlight",
"count": 2
}
}
},
"result":{"item":"bellsandwhistles:headlight", "count": 2}
}
17 changes: 17 additions & 0 deletions src/main/resources/data/bellsandwhistles/recipes/headlight_2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type":"crafting_shaped",
"pattern": [
" #",
"I#",
" #"
],
"key":{
"#":{
"item":"minecraft:iron_nugget"
},
"I":{
"item":"minecraft:torch"
}
},
"result":{"item":"bellsandwhistles:headlight", "count": 2}
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "bellsandwhistles:metro_casing",
"count": 2
}
"type":"crafting_shaped",
"pattern": [
"##"
],
"result": {
"item": "bellsandwhistles:metro_trapdoor",
"count": 6
}
}
"key":{
"#":{
"item":"bellsandwhistles:metro_casing"
}
},
"result":{"item":"bellsandwhistles:metro_trapdoor", "count": 6}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "minecraft:smooth_stone"
},
"result": "bellsandwhistles:station_platform",
"count": 2
}

0 comments on commit 585992a

Please sign in to comment.