mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-06-27 13:56:20 +09:00
..
This commit is contained in:
@@ -0,0 +1,179 @@
|
||||
local items = {
|
||||
['tooltip'] = {
|
||||
-- BASE ITEM 0
|
||||
['electronic-circuit'] = {
|
||||
type = 'item',
|
||||
color = 'green'
|
||||
},
|
||||
['advanced-circuit'] = {
|
||||
type = 'item',
|
||||
color = 'red'
|
||||
},
|
||||
['processing-unit'] = {
|
||||
type = 'item',
|
||||
color = 'blue'
|
||||
},
|
||||
['automation-science-pack'] = {
|
||||
type = 'tool',
|
||||
color = 'red'
|
||||
},
|
||||
['logistic-science-pack'] = {
|
||||
type = 'tool',
|
||||
color = 'green'
|
||||
},
|
||||
-- BASE ITEM 5
|
||||
['military-science-pack'] = {
|
||||
type = 'tool',
|
||||
color = 'grey'
|
||||
},
|
||||
['chemical-science-pack'] = {
|
||||
type = 'tool',
|
||||
color = 'blue'
|
||||
},
|
||||
['production-science-pack'] = {
|
||||
type = 'tool',
|
||||
color = 'purple'
|
||||
},
|
||||
['utility-science-pack'] = {
|
||||
type = 'tool',
|
||||
color = 'yellow'
|
||||
},
|
||||
['space-science-pack'] = {
|
||||
type = 'tool',
|
||||
color = 'white'
|
||||
},
|
||||
-- BASE ITEM 10
|
||||
['speed-module'] = {
|
||||
type = 'module',
|
||||
color = 'blue'
|
||||
},
|
||||
['speed-module-2'] = {
|
||||
type = 'module',
|
||||
color = 'blue'
|
||||
},
|
||||
['speed-module-3'] = {
|
||||
type = 'module',
|
||||
color = 'blue'
|
||||
},
|
||||
['efficiency-module'] = {
|
||||
type = 'module',
|
||||
color = 'green'
|
||||
},
|
||||
['efficiency-module-2'] = {
|
||||
type = 'module',
|
||||
color = 'green'
|
||||
},
|
||||
-- BASE ITEM 15
|
||||
['efficiency-module-3'] = {
|
||||
type = 'module',
|
||||
color = 'green'
|
||||
},
|
||||
['productivity-module'] = {
|
||||
type = 'module',
|
||||
color = 'yellow'
|
||||
},
|
||||
['productivity-module-2'] = {
|
||||
type = 'module',
|
||||
color = 'yellow'
|
||||
},
|
||||
['productivity-module-3'] = {
|
||||
type = 'module',
|
||||
color = 'yellow'
|
||||
},
|
||||
-- BASE ENTITY, ITEM 0
|
||||
['transport-belt'] = {
|
||||
type = 'transport-belt',
|
||||
color = 'yellow'
|
||||
},
|
||||
['fast-transport-belt'] = {
|
||||
type = 'transport-belt',
|
||||
color = 'red'
|
||||
},
|
||||
['express-transport-belt'] = {
|
||||
type = 'transport-belt',
|
||||
color = 'blue'
|
||||
},
|
||||
['underground-belt'] = {
|
||||
type = 'underground-belt',
|
||||
color = 'yellow'
|
||||
},
|
||||
['fast-underground-belt'] = {
|
||||
type = 'underground-belt',
|
||||
color = 'red'
|
||||
},
|
||||
-- BASE ENTITY, ITEM 5
|
||||
['express-underground-belt'] = {
|
||||
type = 'underground-belt',
|
||||
color = 'blue'
|
||||
},
|
||||
['splitter'] = {
|
||||
type = 'splitter',
|
||||
color = 'yellow'
|
||||
},
|
||||
['fast-splitter'] = {
|
||||
type = 'splitter',
|
||||
color = 'red'
|
||||
},
|
||||
['express-splitter'] = {
|
||||
type = 'splitter',
|
||||
color = 'blue'
|
||||
},
|
||||
['passive-provider-chest'] = {
|
||||
type = 'logistic-container',
|
||||
color = 'red'
|
||||
},
|
||||
-- BASE ENTITY, ITEM 10
|
||||
['storage-chest'] = {
|
||||
type = 'logistic-container',
|
||||
color = 'yellow'
|
||||
},
|
||||
['requester-chest'] = {
|
||||
type = 'blue-container',
|
||||
color = 'red'
|
||||
},
|
||||
['buffer-chest'] = {
|
||||
type = 'logistic-container',
|
||||
color = 'green'
|
||||
},
|
||||
['active-provider-chest'] = {
|
||||
type = 'logistic-container',
|
||||
color = 'purple'
|
||||
},
|
||||
['inserter'] = {
|
||||
type = 'inserter',
|
||||
color = 'yellow'
|
||||
},
|
||||
-- BASE ENTITY, ITEM 15
|
||||
['long-handed-inserter'] = {
|
||||
type = 'inserter',
|
||||
color = 'red'
|
||||
},
|
||||
['fast-inserter'] = {
|
||||
type = 'inserter',
|
||||
color = 'blue'
|
||||
},
|
||||
['bulk-inserter'] = {
|
||||
type = 'inserter',
|
||||
color = 'green'
|
||||
},
|
||||
['stack-inserter'] = {
|
||||
type = 'inserter',
|
||||
color = 'white'
|
||||
},
|
||||
-- SPACE_AGE ENTITY, ITEM 0
|
||||
['turbo-transport-belt'] = {
|
||||
type = 'transport-belt',
|
||||
color = 'green'
|
||||
},
|
||||
['turbo-underground-belt'] = {
|
||||
type = 'underground-belt',
|
||||
color = 'green'
|
||||
},
|
||||
['turbo-splitter'] = {
|
||||
type = 'splitter',
|
||||
color = 'green'
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
return items
|
||||
Reference in New Issue
Block a user