Skip to content

Commit

Permalink
increased costs for depth modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Cattlesquat committed Jan 5, 2021
1 parent 4dac907 commit 0f5c464
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions DeathRun/DeathRun.cs
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,47 @@ public static void Patch()
}
}
},
{
TechType.VehicleHullModule1,
new TechData
{
craftAmount = 1,
Ingredients = new List<Ingredient>
{
new Ingredient(TechType.TitaniumIngot, 1),
new Ingredient(TechType.Magnetite, 2),
new Ingredient(TechType.EnameledGlass, 1)
}
}
},
{
TechType.VehicleHullModule2,
new TechData
{
craftAmount = 1,
Ingredients = new List<Ingredient>
{
new Ingredient(TechType.VehicleHullModule1, 1),
new Ingredient(TechType.PlasteelIngot, 1),
new Ingredient(TechType.AluminumOxide, 3),
new Ingredient(TechType.EnameledGlass, 1)
}
}
},
{
TechType.VehicleHullModule3,
new TechData
{
craftAmount = 1,
Ingredients = new List<Ingredient>
{
new Ingredient(TechType.VehicleHullModule2, 1),
new Ingredient(TechType.PlasteelIngot, 1),
new Ingredient(TechType.Sulphur, 2),
new Ingredient(TechType.UraniniteCrystal, 2)
}
}
},
{
TechType.Cyclops,
new TechData
Expand Down Expand Up @@ -405,6 +446,19 @@ public static void Patch()
}
}
},
{
TechType.ExoHullModule1,
new TechData
{
craftAmount = 1,
Ingredients = new List<Ingredient>
{
new Ingredient(TechType.PlasteelIngot, 1),
new Ingredient(TechType.Nickel, 3),
new Ingredient(TechType.Kyanite, 1)
}
}
},
{
TechType.Seaglide,
new TechData
Expand Down

0 comments on commit 0f5c464

Please sign in to comment.