0.0.5 - added build, packed some stuff..

This commit is contained in:
Theenoro 2024-11-02 00:32:34 +01:00
parent 9bf75d9985
commit 99336d0d62
12 changed files with 140 additions and 117 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
dist
tmp

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"Lua.diagnostics.globals": [
"data"
]
}

8
pack.bat Normal file
View 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

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -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

View File

@ -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,

View File

@ -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 =

View File

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB