Minecraft Dungeons - Making Golem Key Doors - Basic Modding Series #14

Опубликовано: 18 Май 2026
на канале: Just Gaming 101
1,558
20

This video will go over how to implement the Doors that need the little Key Golem to Open.
This is quite a simple thing to enter into a custom level other than the rotation issues that you could face.
Let us know how you got on and if you managed to do it ok.
-------------------------------------------------------
As per other videos the tools you will need very but mainly
Dungeons,
Java,
mod-kit
text editor
python 3.8
-------------------------------------------------------
https://dungeoncollector.co.uk?BP=1#v...
-----------------------------------------------
If you want to learn more I strongly suggest heading to the Doku Discord:
  / discord  
-----------------------------------------------
Here is the code used:
---------------
region:goldkey
{"tags": "goldkey", "type": "trigger"}

region:goldgate
{"tags": "", "type": "trigger"}

region:key_gold_objective
{"tags": "key_gold_objective", "type": "trigger"}

-----------------
challenges

{
"id": "only_gold_key",
"click": {
"object": "Decor/Prefabs/DoorExit/BP_DoorLocked_Gold_HighblockHalls",
"count": 1,
"locations": [
"main1.*.goldgate"
],
"key-locations": [
"main1.*.goldkey"
],
"key-type": "gold"
}
}

-------------------------
"challenges": [
"only_gold_key"
],