Fixed uran

This commit is contained in:
Sebastian Seedorf
2022-08-20 00:57:55 +02:00
parent 3fea0f851f
commit 664f766cb6
3 changed files with 33 additions and 2 deletions

View File

@@ -3,5 +3,8 @@
"/Deconstruction_planner", "/Deconstruction_planner",
"/Upgrade_planner", "/Upgrade_planner",
"/Blueprint_book", "/Blueprint_book",
"/Space_science_pack" "/Space_science_pack",
"/Used_up_uranium_fuel_cell",
"/Kovarex_enrichment_process",
"/Uranium_processing"
] ]

View File

@@ -190,5 +190,33 @@
"/Steam": 1 "/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
}
}
} }
] ]

View File

@@ -16,5 +16,5 @@
"incremental": true "incremental": true
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"] "exclude": ["node_modules", "scripts"]
} }