Files
minecraft-aiworld/dynamite-addon/dynamite_BP/entities/thrown_dynamite.json
SysAdmin 3e08a59972
All checks were successful
Deploy Addons / deploy (push) Successful in 14s
feat: A-frame tent + portal walk-through field + texture polish
- camping: replace cube tent with A-frame slope panels (tent_panel_l/r) +
  cardinal_direction permutations; vote-skip sleep that mixes
  player.isSleeping bed sleepers with tent occupants and respects the
  playersSleepingPercentage gamerule; new weathered-canvas texture.
- lobby: walk-through silverlabs:portal_field block (no collision,
  translucent swirl, cross-plane geo) auto-placed above each portal frame;
  invisible silverlabs:portal_label entity floats above each portal with
  the destination world name; transfer detection now scans down through
  the field to find the destination frame.
- postal: regenerate post_office and mailbox block textures so they fill
  the full block face (brick + POST plaque, full red panel with slot/latch
  /flag/rivets) instead of small sprites floating on transparent.
- dynamite + tow-boat: ship the addons (volumes wired into all four
  worlds; enabled_packs registers them into Mya's world).
- art: build-textures.py extended; build-art-catalog.py added to project.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-25 23:17:31 +01:00

67 lines
1.6 KiB
JSON

{
"format_version": "1.21.0",
"minecraft:entity": {
"description": {
"identifier": "silverlabs:thrown_dynamite",
"is_spawnable": false,
"is_summonable": true,
"is_experimental": false
},
"component_groups": {
"silverlabs:detonate": {
"minecraft:explode": {
"fuse_length": 0,
"fuse_lit": true,
"power": 1.5,
"causes_fire": false,
"breaks_blocks": true,
"max_resistance": 4,
"destroy_affected_by_griefing": true
}
}
},
"components": {
"minecraft:collision_box": {
"width": 0.25,
"height": 0.25
},
"minecraft:physics": {},
"minecraft:pushable": {
"is_pushable": false,
"is_pushable_by_piston": false
},
"minecraft:projectile": {
"on_hit": {
"impact_damage": {
"damage": 4,
"knockback": true,
"destroy_on_hit": false,
"semi_random_diff_damage": false
},
"definition_event": {
"event_trigger": {
"event": "silverlabs:detonate",
"target": "self"
}
}
},
"power": 1.4,
"gravity": 0.05,
"inertia": 0.99,
"liquid_inertia": 0.6,
"anchor": 1,
"offset": [0, -0.1, 0],
"should_bounce": false,
"hit_sound": "random.fuse"
}
},
"events": {
"silverlabs:detonate": {
"add": {
"component_groups": ["silverlabs:detonate"]
}
}
}
}
}