A Minecraft datapack generator written in go.
1package loottable
2
3type Context string
4
5const (
6 AdvancementReward Context = "advancement_reward"
7 Archaeology Context = "archaeology"
8 Barter Context = "barter"
9 Block Context = "block"
10 BlockInteract Context = "block_interact"
11 Chest Context = "chest"
12 Empty Context = "empty"
13 Entity Context = "entity"
14 EntityInteract Context = "entity_interact"
15 Equipement Context = "equipement"
16 Fishing Context = "fishing"
17 Generic Context = "generic"
18 Gift Context = "gift"
19 Shearing Context = "shearing"
20 Vault Context = "vault"
21)