Innital concept

Innital draft for diffrent shaped science packs.
This commit is contained in:
Hornwitser 2019-12-04 12:01:39 +01:00
commit f58ffe3d56
14 changed files with 152 additions and 0 deletions

43
src/data.lua Normal file
View file

@ -0,0 +1,43 @@
local items = {
["automation-science-pack"] = {
icon_size = 256,
icon = "__cb-science__/graphics/red.png",
},
["logistic-science-pack"] = {
icon_size = 256,
icon = "__cb-science__/graphics/green.png",
},
["military-science-pack"] = {
icon_size = 256,
icon = "__cb-science__/graphics/black.png",
},
["chemical-science-pack"] = {
icon_size = 256,
icon = "__cb-science__/graphics/cyan.png",
},
["production-science-pack"] = {
icon_size = 256,
icon = "__cb-science__/graphics/purple.png",
},
["utility-science-pack"] = {
icon_size = 256,
icon = "__cb-science__/graphics/yellow.png",
},
["space-science-pack"] = {
icon_size = 256,
icon = "__cb-science__/graphics/white.png",
},
}
for name, definition in pairs(items) do
print(name)
for property, value in pairs(definition) do
if data.raw.technology[name] then
print("setting tech "..name.." property "..property)
data.raw.technology[name][property] = value
end
if data.raw.tool[name] then
data.raw.tool[name][property] = value
end
end
end

BIN
src/graphics/black.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

BIN
src/graphics/cyan.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
src/graphics/green.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

BIN
src/graphics/purple.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

BIN
src/graphics/red.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

BIN
src/graphics/white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
src/graphics/yellow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

9
src/info.json Normal file
View file

@ -0,0 +1,9 @@
{
"name": "cb-science",
"version": "0.1.0",
"title": "Colour Blind Science",
"author": "Hornwitser",
"contact": "Hornwitser#6431 on Discord",
"description": "Alternative icons for science packs",
"factorio_version": "0.17"
}

BIN
src/thumbnail.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB