[feature: new-materials] Add new fabricator materials #203
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
FEATURE: Add new high-tier fabricator materials
New Materials
1. Aether Weave
2. Void Cloth
3. Liquid Crystal Lattice
Files to Modify
src/lib/game/data/fabricator-material-recipes.ts- Add new material recipessrc/lib/game/data/loot-drops.ts- Add loot drop entries for new materialssrc/lib/game/data/fabricator-recipes.ts(or wizard/physical variants) - Add equipment recipes using new materialssrc/lib/game/constants/material-names.tsor equivalent - Add material name constants if they existNotes
Priority
Medium - Endgame crafting content, depends on new elements being added first
Starting work on adding new fabricator materials: Aether Weave, Void Cloth, and Liquid Crystal Lattice.
Analysis
I've reviewed the full material/recipe system. Here's my plan:
New Materials to Add
Files to Modify
data/fabricator-material-recipes.ts— Add 3 new material crafting recipesdata/loot-drops.ts— Add loot drop entries (Aether Weave drops from light/air floors, Void Cloth from dark/air floors, Liquid Crystal Lattice is craftable-only/endgame)data/fabricator-wizard-recipes.ts— Add equipment recipes using the new materials (endgame robes/accessories)Design Decisions
Wait — I need to check what materials exist for Soul element first. Let me verify.
Completed
Successfully added 3 new high-tier fabricator materials:
New Material Recipes (
fabricator-material-recipes.ts)New Loot Drops (
loot-drops.ts)New Equipment Recipes (
fabricator-wizard-recipes.ts)Files Modified
src/lib/game/data/fabricator-material-recipes.ts(232 lines ✅)src/lib/game/data/loot-drops.ts(376 lines ✅)src/lib/game/data/fabricator-wizard-recipes.ts(242 lines ✅)Notes
All 3 new materials added with recipes, loot drops, and equipment. Ready for review.