diff --git a/res/exclude.json b/res/exclude.json index 14d6a9c..003cd1b 100644 --- a/res/exclude.json +++ b/res/exclude.json @@ -3,5 +3,8 @@ "/Deconstruction_planner", "/Upgrade_planner", "/Blueprint_book", - "/Space_science_pack" + "/Space_science_pack", + "/Used_up_uranium_fuel_cell", + "/Kovarex_enrichment_process", + "/Uranium_processing" ] diff --git a/res/manual.json b/res/manual.json index 0903e1f..863f66b 100644 --- a/res/manual.json +++ b/res/manual.json @@ -190,5 +190,33 @@ "/Steam": 1 } } + }, + { + "name": "Uranium-238", + "href": "/Uranium-238", + "image": "/images/thumb/Uranium-238.png/32px-Uranium-238.png", + "recipe": { + "prerequisites": { + "/Uranium_ore": 10 + }, + "time": 12, + "output": { + "/Uranium-238": 1 + } + } + }, + { + "name": "Uranium-235", + "href": "/Uranium-235", + "image": "/images/thumb/Uranium-235.png/32px-Uranium-235.png", + "recipe": { + "prerequisites": { + "/Uranium-238": 3 + }, + "time": 60, + "output": { + "/Uranium-235": 1 + } + } } ] diff --git a/tsconfig.json b/tsconfig.json index bad4c60..c4facb9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,5 +16,5 @@ "incremental": true }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "exclude": ["node_modules", "scripts"] }