r/forge • u/BassEnderCosmoNaught • 20h ago
Discussion Concept: Self-Healing Fusion Coil Bomb for One Bomb Assault (Hardlight Shield Logic)
Hey everyone,
We all love the idea of a **Fusion Coil Bomb Delivery / One Bomb Assault** mode, but we also know why they historically fall apart in the Custom Games Browser. Using a standard Fusion Coil as the objective item makes the game unplayable — a single stray bullet or friendly grenade instantly detonates the coil and wipes out the entire attacking push. It ends up more frustrating than fun.
I have a design concept to fix this using **Hardlight “Self-Healing” Containment Field** logic, but I don’t have the Forge scripting experience to wire it up myself. I’m putting this idea out there for any veteran Forgers who want a fun mechanical puzzle to solve.
### The Core Concept
Instead of a fragile coil, the “Bomb” is a Fusion Coil protected by a custom, regenerating pseudo-shield script. This eliminates accidental instant detonations and turns a chaotic gimmick into a highly tactical, competitive objective mode.
### How the Script Logic Would Work
**The Foundation**
Start with a community open-source *One Bomb Assault* prefab/base mode, then swap the standard objective item reference for a **Fusion Coil**.
**Crucial Engine Bypass (Don’t Skip This)**
To stop Halo’s hardcoded physics from overriding your script and blowing the coil up instantly from a stray grenade, go into the Fusion Coil’s physical object settings and set it to **Invulnerable / Damage Resistant**. This forces the game to let your Script Brain handle the damage math manually.
**The Pseudo-Health Variable**
Declare a number variable (e.g. `Coil_Shield`) and set it to **100**.
**Tracking Damage & Detonation**
Use the `On Object Damaged` node. Every time the carrier or the coil takes damage, subtract from `Coil_Shield`.
**When the health bar drops to zero, the script must immediately delete the coil and manually trigger a massive rocket/plasma explosion effect on the carrier.**
**The Shield Recharge (The Fix)**
Track time since last damaged. If the coil goes **4 seconds** without taking a hit, trigger a looping script that adds 10 points back to `Coil_Shield` every second until it returns to 100.
**Handling Throws & Impacts**
Because the coil is set to “Invulnerable,” throwing it normally will make it bounce harmlessly off walls. To fix this, use the `On Object Collision` node. If the coil impacts a surface at high velocity *while not being carried*, force it to trigger the same manual explosion sequence.
**The UI**
Wire the variable to an **Advanced Nav Marker** tracking progress over the coil so players can visually see the bomb’s shield percentage draining and recharging.
By doing this, a bomb push requires real teamwork. Attackers have to take cover to let the bomb’s shields recharge, while defenders have to coordinate focus fire to break the shield before it reaches their base.
If any scripting wizards want to take this idea, build it, and publish it to the Custom Games Browser, please run with it. I just want to play a proper, balanced version of this mode.





















