Born in Chaos: Forgotten Content - Return of Lost Content
This addon for the Born in Chaos mod restores functionality that was removed in version 1.10, bringing it back to your game!
Important: The addon requires GeckoLib and Born in Chaos version 1.10 or higher to function.
_Author Clarification: According to the creator, the original concepts for this mod were developed by an author under the handle MONGOOSEARTIST. Full information is available on major modding platforms.
Creatures
Wither Scuttler
A small spider-like enemy capable of inflicting the Wither effect on players. Possesses 15 health points and has an extremely low chance of dropping a wither rose upon defeat.
![Wither scuttlers at night illustration]
Shy Spirit
A type of spirit creature that deals minimal damage. When attacked, the mystical being blinds and slows the attacker before instantly vanishing. Using an empty glass bottle on the spirit captures a Bottled Spirit.
![Shy spirits at night illustration]
Items
Bottled Spirit
Obtained by interacting with a shy spirit using a glass bottle. When consumed, provides Speed and Night Vision effects. Also serves as a required component for crafting the Eternal Candy.
![Bottled spirit in item frame illustration]
Eternal Candy
Crafted using a stick, three bottled spirits, two portions of sugar, and one chaos seed. The item can be consumed indefinitely, though it has a cooldown period between uses.
![Eternal candy in item frame illustration]
Additional Information
The creator maintains a portfolio of other modifications, including:
- Enhanced achievements systems
Code example retained from original documentation:
// Eternal Candy item creation (simplified illustrative version)
class EternalCandy extends Item {
constructor() {
super(...arguments);
this.maxStackSize = 1;
this.useDuration = 32; // Usage duration
}
// Can be consumed infinitely
// 5-second cooldown between consumption
}
The core concept focuses on restoring previously removed content, thereby expanding the gameplay possibilities of the original Born in Chaos mod while introducing new interaction mechanics.