mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 07:18:38 +02:00
CODEBASE: Refactor Stanek's Gift UI code and change internal FragmentType enum (#2346)
This commit is contained in:
23
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
23
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -5771,6 +5771,29 @@ export interface Formulas {
|
||||
bladeburner: BladeburnerFormulas;
|
||||
}
|
||||
|
||||
/** @public */
|
||||
type FragmentEnumType = {
|
||||
HackingSpeed: 3;
|
||||
HackingMoney: 4;
|
||||
HackingGrow: 5;
|
||||
Hacking: 6;
|
||||
Strength: 7;
|
||||
Defense: 8;
|
||||
Dexterity: 9;
|
||||
Agility: 10;
|
||||
Charisma: 11;
|
||||
HacknetMoney: 12;
|
||||
HacknetCost: 13;
|
||||
Rep: 14;
|
||||
WorkMoney: 15;
|
||||
Crime: 16;
|
||||
Bladeburner: 17;
|
||||
Booster: 18;
|
||||
};
|
||||
|
||||
/** @public */
|
||||
type FragmentType = _ValueOf<FragmentEnumType>;
|
||||
|
||||
/** @public */
|
||||
interface Fragment {
|
||||
id: number;
|
||||
|
||||
Reference in New Issue
Block a user