fixed fence gate and added drops

This commit is contained in:
Halbear
2026-08-04 01:10:43 +01:00
parent cfb24df5f8
commit e5bdf8117e
13 changed files with 180 additions and 3 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ mod_name=Age of the Gods
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=All Rights Reserved mod_license=All Rights Reserved
# The mod version. See https://semver.org/ # The mod version. See https://semver.org/
mod_version=1.0.0 mod_version=0.0.2
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources. # This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html # See https://maven.apache.org/guides/mini/guide-naming-conventions.html
@@ -1,6 +1,6 @@
{ {
"model": { "model": {
"type": "minecraft:model", "type": "minecraft:model",
"model": "ageofthegods:block/olive/olive_fence_gate_inventory" "model": "ageofthegods:block/olive/olive_fence_gate_closed"
} }
} }
@@ -19,6 +19,9 @@
"block.ageofthegods.silver_ore": "Silver Ore", "block.ageofthegods.silver_ore": "Silver Ore",
"block.ageofthegods.zinc_ore": "Zinc Ore", "block.ageofthegods.zinc_ore": "Zinc Ore",
"block.ageofthegods.tin_ore": "Tin Ore", "block.ageofthegods.tin_ore": "Tin Ore",
"block.ageofthegods.silver_deepslate_ore": "Silver Deepslate Ore",
"block.ageofthegods.zinc_deepslate_ore": "Zinc Deepslate Ore",
"block.ageofthegods.tin_deepslate_ore": "Tin Deepslate Ore",
"gui.ageofthegods.alloy_furnace_gui.title": "Alloy Furnace", "gui.ageofthegods.alloy_furnace_gui.title": "Alloy Furnace",
"gui.ageofthegods.forge_workbench.title": "Forge", "gui.ageofthegods.forge_workbench.title": "Forge",
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "ageofthegods:olive_button"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "ageofthegods:olive_fence"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "ageofthegods:olive_fence_gate"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "ageofthegods:olive_pressure_plate"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "ageofthegods:olive_slab"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "ageofthegods:olive_stairs"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
" ",
" ",
"aaa"
],
"key": {
"a": "ageofthegods:olive_planks"
},
"result": {
"id": "ageofthegods:olive_pressure_plate",
"count": 1
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
" ",
"aaa",
" "
],
"key": {
"a": "ageofthegods:olive_planks"
},
"result": {
"id": "ageofthegods:olive_pressure_plate",
"count": 1
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
"aaa",
" ",
" "
],
"key": {
"a": "ageofthegods:olive_planks"
},
"result": {
"id": "ageofthegods:olive_pressure_plate",
"count": 1
}
}
@@ -2,6 +2,12 @@
"replace": false, "replace": false,
"values": [ "values": [
"ageofthegods:olive_log", "ageofthegods:olive_log",
"ageofthegods:olive_planks" "ageofthegods:olive_planks",
"ageofthegods:olive_stairs",
"ageofthegods:olive_slab",
"ageofthegods:olive_button",
"ageofthegods:olive_pressure_plate",
"ageofthegods:olive_fence_gate",
"ageofthegods:olive_fence"
] ]
} }