{
    "pools": [
        {
            "rolls": 1,
            "entries": [
                {
                    "type": "item",
                    "weight": 1,
                    "name": "minecraft:skull",
                    "conditions": [
                        {
                            "condition": "random_chance",
                            "chance": 1
                        }
                    ],
                    "functions": [
                        {
                            "function": "set_count",
                            "count": 1
                        },
                        {
                            "function": "set_data",
                            "data": 4
                        }
                    ]
                }
            ]
        },
        {
            "rolls": 1,
            "entries": [
                {
                    "type": "item",
                    "weight": 1,
                    "name": "minecraft:gunpowder",
                    "functions": [
                        {
                            "function": "set_count",
                            "count": {
                                "min": 3,
                                "max": 10
                            },
                            "conditions": [
                                {
                                    "condition": "random_chance_with_looting",
                                    "chance": 0.5,
                                    "looting_multiplier": 0.15
                                }
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "rolls": 1,
            "entries": [
                {
                    "type": "item",
                    "weight": 1,
                    "name": "minecraft:blaze_rod",
                    "conditions": [
                        {
                            "condition": "random_chance",
                            "chance": 0.1
                        }
                    ],
                    "functions": [
                        {
                            "function": "set_nbt",
                            "tag": "{display:{Lore:[0:Throw for boom!],Name:Lightning Rod}}"
                        },
                        {
                            "function": "set_count",
                            "count": {
                                "min": 0,
                                "max": 1
                            }
                        }
                    ]
                }
            ]
        }
    ]
}