-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the power node stuff that is no longer necessary.
- Loading branch information
1 parent
f8e6623
commit d7a5d87
Showing
8 changed files
with
19 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import type BasePlugin from ".."; | ||
import BaseShipSystemPlugin, { registerSystem } from "./BaseSystem"; | ||
import type { ShipSystemFlags } from "./shipSystemTypes"; | ||
|
||
// TODO March 16, 2022: Add the necessary sound effects | ||
export default class ShieldsPlugin extends BaseShipSystemPlugin { | ||
static flags: ShipSystemFlags[] = ["efficiency", "heat", "power"]; | ||
type = "torpedoLauncher" as const; | ||
|
||
constructor(params: Partial<ShieldsPlugin>, plugin: BasePlugin) { | ||
super(params, plugin); | ||
} | ||
} | ||
registerSystem("torpedoLauncher", ShieldsPlugin); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters