I got it working by opening the zip file in AppData\Roaming\Factorio\mods
Edit prototypes\tinyarmor-recipes.lua as such:
data:extend(
{
{
type = "recipe",
name = "tiny-armor-mk1",
enabled = true,
energy_required = 20,
ingredients =
{
{ type = "item", name = "light-armor", amount = 15 },
{ type = "item", name = "tiny-armor-mk0", amount = 1 }
},
results = { { type = "item", name = "tiny-armor-mk1", amount = 1 } }
},
{
type = "recipe",
name = "tiny-armor-mk2",
enabled = true,
energy_required = 20,
ingredients =
{
{ type = "item", name = "heavy-armor", amount = 5 },
{ type = "item", name = "tiny-armor-mk1", amount = 1 }
},
results = { { type = "item", name = "tiny-armor-mk2", amount = 1 } }
},
})
Edit info.json as such
{
"name": "TinyStart",
"version": "1.1.1",
"title": "TinyStart",
"author": "Yehn",
"contact": "",
"homepage": "",
"factorio_version": "2.0",
"dependencies": ["base >= 1.1"],
"description": "A minimalist starter kit with a tier 0 power armor, a mini low-output reactor, and the accoutrements you need for robot construction. As simple as 'Install and Play', but includes optional loadout customization for those looking to tailor their experience, such as using solar power instead."
}