CC Cosmetics
This client-side mod requires CC:Tweaked version 1.101.1 or higher for proper operation. It allows adding new visual overlays for turtles through configuration files and resource packs.
Main Features
Using configuration, you can set resource paths and corresponding labels for overlays. Here's an example setup:
["Client-side configurations for turtle cosmetics"]
# Paths to resources (namespace:resource)
resources = ["computercraft:block/turtle_elf_overlay"]
# Labels for overlays (must match the number of paths)
label = ["elf"]
When adding the "elf" label to a turtle, it receives the corresponding visual overlay. Overlays can be combined by specifying multiple keywords for one turtle.
Extending Functionality
Other mods can add their own overlays through code:
Overlays.addOverlay(new Overlay("glass", new ResourceLocation("minecraft:block/glass")));
It's important to note that the CC Cosmetics mod itself doesn't include ready-made overlays - it only provides tools for their creation and application.