Датапак. Достижения. Требуется помощь с созданием достижения, которое получается после убийства определенного количества определенного типа мобов.

Версия Minecraft
1.20.1
API
Vanilla (без API)
3
1
1
Нужно прописать достижение, которое получается после убийства определенного количества определенного типа мобов.
Ниже прописан код на получение достижения после убийства определенного количества всех мобов, которые способны к размножению (строка 21), а мне требуется, чтобы вместо всех животных достижение считало только определённый тип моба.
Код:
JSON:
{
    "display": {
        "icon": {
            "item": "minecraft:rabbit"
        },
        "title": {"translate":"A real rival to the killer rabbit"},
        "description": {"color":"green","translate":"Take the lives of 50 harmless rabbits"},
        "announce_to_chat": "true"
    },
    "parent": "cruelpack:cruelty/kill_a_rabbit",
    "criteria": {
        "rabbit": {
            "trigger": "minecraft:location",
            "conditions": {
                "player":  {
                    "type_specific": {
                        "type": "player",
                        "stats": [
                            {
                                "type": "minecraft:custom",
                                "stat": "minecraft:animals_bred",
                                "value": {
                                    "min": 50
                                }
                            }
                        ]
                    }
                }
            }
        }
    }
}
 
Решение
Всё дело было в 20 строке

JSON:
{
    "display": {
        "icon": {
            "item": "minecraft:rabbit"
        },
        "title": {"translate":"A real rival to the killer rabbit"},
        "description": {"color":"red","translate":"Take the lives of 50 harmless rabbits"},
        "announce_to_chat": "true"
    },
    "parent": "cruelpack:cruelty/kill_a_rabbit",
    "criteria": {
        "rabbit": {
            "trigger": "minecraft:location",
            "conditions": {
                "player":  {
                    "type_specific": {
                        "type": "player",
                        "stats": [
                            {
                                "type": "minecraft:killed"...
3
1
1
Всё дело было в 20 строке

JSON:
{
    "display": {
        "icon": {
            "item": "minecraft:rabbit"
        },
        "title": {"translate":"A real rival to the killer rabbit"},
        "description": {"color":"red","translate":"Take the lives of 50 harmless rabbits"},
        "announce_to_chat": "true"
    },
    "parent": "cruelpack:cruelty/kill_a_rabbit",
    "criteria": {
        "rabbit": {
            "trigger": "minecraft:location",
            "conditions": {
                "player":  {
                    "type_specific": {
                        "type": "player",
                        "stats": [
                            {
                                "type": "minecraft:killed",
                                "stat": "minecraft:rabbit",
                                "value": {
                                    "min": 50
                                }
                            }
                        ]
                    }
                }
            }
        }
    }
}
 
Сверху