What is

Rusty caps are tools for mod pack developers to add cool stuff

In short: This is similar to a structure in an item

How to make

/dynocap toggleRusty

Untitled

How to test?

C**ommand| /rustycap {}**

All found in the prefabs folder will be suggested here

How add to game?

Dynocaps adds a custom loot_table entry type, so you can add them in anyway you have to edit loot_tables

Sample

{
  "type": "minecraft:block",
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "dynocaps:rustycap",
          "prefabname": "yourprefab.dynobin" // As seen in /rustycaps command
        }
      ],
      "conditions": [
        {
          "condition": "minecraft:survives_explosion"
        }
      ]
    }
  ]
}