I looked into the mod (v1.0.2), it is literally nothing but but 5 recipes, taking one and producing a hundred of coal, stone, iron-plates, copper-plates and steel-plates.
local ____exports = {}
data:extend({
{
type = "recipe",
name = "coal x 100",
category = "basic-crafting",
energy_required = 1,
ingredients = {{"coal", 1}},
results = {{"coal", 100}}
},
{
type = "recipe",
name = "stone x 100",
category = "basic-crafting",
energy_required = 1,
ingredients = {{"stone", 1}},
results = {{"stone", 100}}
},
{
type = "recipe",
name = "iron-plate x 100",
category = "basic-crafting",
energy_required = 1,
ingredients = {{"iron-plate", 1}},
results = {{"iron-plate", 100}}
},
{
type = "recipe",
name = "copper-plate x 100",
category = "basic-crafting",
energy_required = 1,
ingredients = {{"copper-plate", 1}},
results = {{"copper-plate", 100}}
},
{
type = "recipe",
name = "steel-plate x 100",
category = "basic-crafting",
energy_required = 1,
ingredients = {{"steel-plate", 1}},
results = {{"steel-plate", 100}}
}
})
return ____exports
At this point I'm disappointed, that there is not a recipe for multiplying fish at this point.