add nuclear waste/neutron fluid
This commit is contained in:
parent
a505d19060
commit
20879f7d46
28 changed files with 711 additions and 45 deletions
94
prototypes/fission/fi_castor.lua
Normal file
94
prototypes/fission/fi_castor.lua
Normal file
|
@ -0,0 +1,94 @@
|
|||
--local functions
|
||||
local function config(name)
|
||||
return settings.startup['fi_castor_'..name].value
|
||||
end
|
||||
|
||||
local function sprite(name)
|
||||
return '__248k__/ressources/fission/fi_castor/fi_castor_'..name
|
||||
end
|
||||
|
||||
--item
|
||||
data:extend({
|
||||
{
|
||||
name = 'fi_castor_item',
|
||||
type = 'item',
|
||||
icon = sprite('icon.png'),
|
||||
icon_size = 64,
|
||||
place_result = 'fi_castor_entity',
|
||||
stack_size = 20,
|
||||
subgroup = 'fi_item_subgroup_c',
|
||||
order = 'a-a',
|
||||
},
|
||||
|
||||
})
|
||||
|
||||
--entity
|
||||
data:extend({
|
||||
--prototype
|
||||
{
|
||||
name = 'fi_castor_entity',
|
||||
type = 'assembling-machine',
|
||||
icon = sprite('icon.png'),
|
||||
icon_size = 64,
|
||||
flags = {"player-creation","placeable-neutral"},
|
||||
max_health = 300,
|
||||
corpse = 'big-remnants',
|
||||
collision_box = {{-1.4,-1.4},{1.4,1.4}},
|
||||
selection_box = {{-1.5,-1.5},{1.5,1.5}},
|
||||
map_color = {r=0, g=0, b=1, a=1},
|
||||
minable = {
|
||||
mining_time = 1,
|
||||
result = 'fi_castor_item',
|
||||
},
|
||||
fixed_recipe = 'fi_decay_waste_recipe',
|
||||
crafting_categories = {'fi_castor_category'},
|
||||
crafting_speed = 1,
|
||||
energy_source = {
|
||||
type = 'electric',
|
||||
usage_priority = 'secondary-input',
|
||||
--input_flow_limit = '4MW',
|
||||
},
|
||||
energy_usage = '100kW',
|
||||
--animation
|
||||
animation = {
|
||||
north = {
|
||||
filename = sprite('entity_animation.png'),
|
||||
size = {480,448},
|
||||
scale = 0.2,
|
||||
line_length = 1,
|
||||
frame_count = 1,
|
||||
animation_speed = 1,
|
||||
},
|
||||
east = {
|
||||
filename = sprite('entity_animation.png'),
|
||||
size = {480,448},
|
||||
scale = 0.2,
|
||||
line_length = 1,
|
||||
frame_count = 1,
|
||||
animation_speed = 1,
|
||||
},
|
||||
south = {
|
||||
filename = sprite('entity_animation.png'),
|
||||
size = {480,448},
|
||||
scale = 0.2,
|
||||
line_length = 1,
|
||||
frame_count = 1,
|
||||
animation_speed = 1,
|
||||
},
|
||||
west = {
|
||||
filename = sprite('entity_animation.png'),
|
||||
size = {480,448},
|
||||
scale = 0.2,
|
||||
line_length = 1,
|
||||
frame_count = 1,
|
||||
animation_speed = 1,
|
||||
},
|
||||
},
|
||||
|
||||
working_sound = {
|
||||
sound = { filename = '__base__/sound/nuclear-reactor-1.ogg'},
|
||||
idle_sound = { filename = "__base__/sound/idle1.ogg", volume = 0.3 },
|
||||
apparent_volume = 0.2,
|
||||
},
|
||||
},
|
||||
})
|
|
@ -41,7 +41,7 @@ data:extend({
|
|||
result = 'fi_fiberer_item',
|
||||
},
|
||||
crafting_categories = {'fi_fiberer_category'},
|
||||
crafting_speed = 3.5,
|
||||
crafting_speed = 1,
|
||||
energy_source = {
|
||||
type = 'electric',
|
||||
usage_priority = 'secondary-input',
|
||||
|
|
|
@ -135,5 +135,14 @@ data:extend({
|
|||
subgroup = 'fi_item_subgroup_b',
|
||||
order = 'a-a',
|
||||
},
|
||||
{
|
||||
name = 'fi_materials_waste',
|
||||
type = 'item',
|
||||
icon = sprite('waste.png'),
|
||||
icon_size = 64,
|
||||
stack_size = 1,
|
||||
subgroup = 'fi_item_subgroup_a',
|
||||
order = 'f-a',
|
||||
},
|
||||
|
||||
})
|
||||
|
|
|
@ -26,7 +26,9 @@ local limitation_list = {
|
|||
'fu_tech_sign_recipe',
|
||||
'gr_pcb_recipe',
|
||||
'gr_gold_wire_recipe',
|
||||
'gr_circuit_recipe'
|
||||
'gr_circuit_recipe',
|
||||
'gr_materials_stack_up_item_recipe',
|
||||
'gr_materials_stack_down_item_recipe'
|
||||
}
|
||||
|
||||
--item
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue