Armor Plating

by VortiK

Adds armor plating equipment to increase vehicles hitpoints and improve their survivability. - Supports AAI Vehicles. - Supports Angel's Heavy Tank. - Has built in mod support.

Content
4 years ago
0.16 - 1.1
12.9K
Armor

g Any chance for 2.0 version?

9 months ago

Hello, any chance of you updating this to 2.0? Looks nice!

5 months ago

Can confirm, eould love this for my pyanodons run

4 months ago

+1, if anyone else knows of a mod that does something similar please let me know until this gets updated

3 months ago

+1 here

19 days ago

Making it compatible with 2.0 is quite simple.

first base game version needs to be updated:
"factorio_version": "2.0",

then in file prototypes\vtk-armor-plating-player-tank.lua needs these rows:
vtkplayertankrecipe.normal.result = "player-tank";
vtkplayertankrecipe.expensive.result = "player-tank";
be replaced by this row:
vtkplayertankrecipe.place_result = "player-tank";

and in file prototypes\vtk-armor-plating-items.lua old crafting recipe definitions:
ingredients =
{
{"steel-plate", 10},
{"iron-plate", 5},
{"plastic-bar", 1},
},
result = "vtk-armor-plating"
need to be replaced with new format:
ingredients =
{
{amount = 10, name = "steel-plate", type = "item"},
{amount = 5, name = "iron-plate", type = "item"},
{amount = 1, name = "plastic-bar", type = "item"},
},
results =
{
{amount = 1, name = "vtk-armor-plating", type = "item"},
}
for all three recipes.

14 days ago

+1

New response