feat(camping): add craftable tent and hammock addon
All checks were successful
Deploy Addons / deploy (push) Successful in 13s

Tent pitches over a 2x3 flat footprint and lets players skip to dawn
without touching their spawn point. Hammock strings between two posts
3-6 blocks apart (straight or diagonal, +/-1 block height) and keeps
hostile mobs at bay while occupied. Both are craftable (wool/sticks and
wool/string) and mounted in all four worlds.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-23 23:10:21 +01:00
parent 579dfec633
commit 8b83e324f0
20 changed files with 676 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{
"format_version": "1.21.0",
"minecraft:block": {
"description": {
"identifier": "silverlabs:hammock_cloth"
},
"components": {
"minecraft:destructible_by_mining": {
"seconds_to_destroy": 0.3
},
"minecraft:destructible_by_explosion": {
"explosion_resistance": 0.5
},
"minecraft:map_color": "#B43C37",
"minecraft:material_instances": {
"*": {
"texture": "hammock_cloth",
"render_method": "alpha_test"
}
},
"minecraft:collision_box": {
"origin": [-8, 0, -8],
"size": [16, 4, 16]
},
"minecraft:selection_box": {
"origin": [-8, 0, -8],
"size": [16, 4, 16]
},
"minecraft:geometry": "minecraft:geometry.full_block",
"minecraft:light_dampening": 0
}
}
}

View File

@@ -0,0 +1,24 @@
{
"format_version": "1.21.0",
"minecraft:block": {
"description": {
"identifier": "silverlabs:tent_canvas"
},
"components": {
"minecraft:destructible_by_mining": {
"seconds_to_destroy": 0.4
},
"minecraft:destructible_by_explosion": {
"explosion_resistance": 1.0
},
"minecraft:map_color": "#547A4E",
"minecraft:material_instances": {
"*": {
"texture": "tent_canvas",
"render_method": "alpha_test"
}
},
"minecraft:light_dampening": 1
}
}
}