🛃Custom weapon
workbenchData: { name: "MyWeapon", // Internal ID displayName: "My Custom Gun", // Shown in UI description: "A sleek custom weapon.", type: "rifle", // pistol | rifle | shotgun totalCost: { // the cost of the weapon Receiver: 1, Barrel: 1 }, parts: [ // IDs match your anchors output { id: "part1", name: "Receiver", description: "Main body.", image: "./assets/mygun/receiver.blueprint.png", category: "Receiver", cost: { metal_scrap: 6 } }, { id: "part2", name: "Barrel", description: "High‑precision.", image: "./assets/mygun/barrel.blueprint.png", category: "Barrel", cost: { metal_scrap: 4, plastic: 2 } } ] }
Last updated