0.0.5 - added build, packed some stuff..
This commit is contained in:
parent
9bf75d9985
commit
99336d0d62
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
dist
|
||||||
|
tmp
|
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"Lua.diagnostics.globals": [
|
||||||
|
"data"
|
||||||
|
]
|
||||||
|
}
|
8
pack.bat
Normal file
8
pack.bat
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
powershell rm tmp -r -force
|
||||||
|
powershell mkdir tmp
|
||||||
|
powershell cp -r src tmp
|
||||||
|
powershell mv tmp/src tmp/more-u235_extended
|
||||||
|
cd tmp
|
||||||
|
powershell Compress-Archive ./more-u235_extended ../dist/more-u235_extended.zip
|
||||||
|
cd ..
|
||||||
|
powershell rm tmp -r -force
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
@ -1,6 +1,7 @@
|
|||||||
[recipe-name]
|
[recipe-name]
|
||||||
mu-u235_1_20=Uran 235 1/20
|
mu-u235_1_20=Uran 235 1/20
|
||||||
mu-dufc=Recycle depleted uran fuel cell
|
mu-dufc=Recycle depleted uran fuel cell
|
||||||
|
mu-uer=Uranium enrichment
|
||||||
|
|
||||||
[technology-name]
|
[technology-name]
|
||||||
mu-u235=Uran 235 1/20 centrifuging
|
mu-u235=Uran 235 1/20 centrifuging
|
||||||
@ -9,3 +10,4 @@ mu-dufc=Recycle depleted uran fuel cell
|
|||||||
[technology-description]
|
[technology-description]
|
||||||
mu-u235=A perfect way to get the exact amount of Uran235 and Uran238
|
mu-u235=A perfect way to get the exact amount of Uran235 and Uran238
|
||||||
mu-dufc=Recycle depleted uran fuel cell
|
mu-dufc=Recycle depleted uran fuel cell
|
||||||
|
mu-uer=@TODO
|
@ -8,6 +8,7 @@ data:extend({
|
|||||||
icon_size = 128,
|
icon_size = 128,
|
||||||
enabled = false,
|
enabled = false,
|
||||||
energy_required = 30,
|
energy_required = 30,
|
||||||
|
subgroup = "energy",
|
||||||
ingredients =
|
ingredients =
|
||||||
{
|
{
|
||||||
{type = "item", name = "uranium-ore", amount = 20},
|
{type = "item", name = "uranium-ore", amount = 20},
|
||||||
@ -25,6 +26,7 @@ data:extend({
|
|||||||
icon_size = 128,
|
icon_size = 128,
|
||||||
enabled = false,
|
enabled = false,
|
||||||
energy_required = 30,
|
energy_required = 30,
|
||||||
|
subgroup = "energy",
|
||||||
ingredients =
|
ingredients =
|
||||||
{
|
{
|
||||||
{type = "item", name = "depleted-uranium-fuel-cell", amount = 10},
|
{type = "item", name = "depleted-uranium-fuel-cell", amount = 10},
|
||||||
@ -35,8 +37,9 @@ data:extend({
|
|||||||
},
|
},
|
||||||
},{
|
},{
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
name = "mu-dufc",
|
name = "mu-uer",
|
||||||
category = "centrifuging",
|
category = "centrifuging",
|
||||||
|
subgroup = "energy",
|
||||||
icon = "__more-u235_50_50__/graphics/recycle_ico.png",
|
icon = "__more-u235_50_50__/graphics/recycle_ico.png",
|
||||||
icon_size = 128,
|
icon_size = 128,
|
||||||
enabled = false,
|
enabled = false,
|
@ -34,7 +34,10 @@ data:extend({
|
|||||||
{
|
{
|
||||||
type = "unlock-recipe",
|
type = "unlock-recipe",
|
||||||
recipe = "mu-dufc"
|
recipe = "mu-dufc"
|
||||||
},
|
},{
|
||||||
|
type = "unlock-recipe",
|
||||||
|
recipe = "mu-uer"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
prerequisites = {"nuclear-fuel-reprocessing"},
|
prerequisites = {"nuclear-fuel-reprocessing"},
|
||||||
unit =
|
unit =
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
Loading…
Reference in New Issue
Block a user