Entity Data - Mnesikos/LilCritters GitHub Wiki

entity stats json

Every animal you add needs this file. It should be named after the entity's ID, such as tree_squirrel.json and should be located at src/main/resources/data/lilcritters/entity_stats. For more info, see ZAWA's Animal Data page.

{
  "temperament": "timid",
  "kibble": "zawa:omnivore_kibble",
  "size": "tiny",
  "fertility": "high",
  "breeding_item": "minecraft:pumpkin_seeds",
  "litter_size": {
    "min": 4,
    "max": 5
  },
  "diet": "zawa:omnivore",
  "speed": "fast",
  "enrichment": {
    "zawa:blocks": [
      "zawa:branch",
      "zawa:puzzle_feeder",
      "zawa:rope"
    ],
    "zawa:entities": [
      "zawa:scented_ball"
    ]
  },
  "variant_count": 6
}

zoo animals json

All animals you add also need to be added to this zawa tag. It should be named zoo_animals.json and located at src/main/resources/data/zawa/tags/entity_types. For more info, see Minecraft's wiki page for tags.

{
  "replace": false,
  "values": [
    "lilcritters:banded_penguin",
    "lilcritters:box_turtle",
    "lilcritters:bullfrog",
    "lilcritters:capybara",
    "lilcritters:dart_frog",
    "lilcritters:dwarf_crocodile",
    "lilcritters:guinea_pig",
    "lilcritters:opossum",
    "lilcritters:pacman_frog",
    "lilcritters:pond_slider",
    "lilcritters:pumpkin_toadlet",
    "lilcritters:raccoon",
    "lilcritters:skunk",
    "lilcritters:small_clawed_otter",
    "lilcritters:tree_monitor",
    "lilcritters:tree_squirrel",
    "lilcritters:tufted_deer"
  ]
}