Compare commits

...

2 Commits

Author SHA1 Message Date
Alex
f51f351e06 Update file modinfo.lua 2023-08-27 21:38:08 +00:00
Slava
b137aec60a Update file weapongenerator.lua 2023-08-27 17:00:17 +00:00
2 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ function WeaponGenerator.generateSmartCannon(rand, dps, tech, material, rarity)
weapon.seeker = 1
weapon.appearance = WeaponAppearance.Cannon
weapon.name = "SmartCannon /* Weapon Name*/"%_t
weapon.prefix = "SmartCannon /* Weapon Prefix*/"%_t
-- weapon.prefix = "SmartCannon /* Weapon Prefix*/"%_t
weapon.icon = "data/textures/icons/autocannon.png"
weapon.sound = "cannon"
weapon.accuracy = 0.99 - rand:getFloat(0, 0.03)
@@ -30,7 +30,7 @@ function WeaponGenerator.generateSmartCannon(rand, dps, tech, material, rarity)
local specType = rand:getInt(0, 1)
if specType > 0 then
weapon.prefix = "Ionized SmartCannon /* Weapon Prefix*/"%_t
weapon.prefix = "Ionized /* Weapon Prefix*/"%_t
weapon.shieldPenetration = 1
else
weapon.prefix = "SmartCannon /* Weapon Prefix*/"%_t
@@ -89,7 +89,7 @@ function WeaponGenerator.generateHeavyCannon(rand, dps, tech, material, rarity)
local Pen = rand:getInt(0, rarity.value)
if Pen > 0 then
weapon.blockPenetration = Pen
weapon.prefix = "Cumulative Heavy Cannon /* Weapon Prefix*/"%_t
weapon.prefix = "Cumulative/* Weapon Prefix*/"%_t
else
weapon.prefix = "Heavy Cannon /* Weapon Prefix*/"%_t
end

View File

@@ -16,7 +16,7 @@ meta =
description = "Adds some new weapon to the game.",
-- Insert all authors into this list
authors = {"Alive!"},
authors = {"Casimir Kepler, Baconborn, OmenOs"},
-- Version of your mod, should be in format 1.0.0 (major.minor.patch) or 1.0 (major.minor)
-- This will be used to check for unmet dependencies or incompatibilities
@@ -52,5 +52,5 @@ meta =
saveGameAltering = false,
-- Contact info for other users to reach you in case they have questions
contact = "https://steamcommunity.com/id/CasKepler2/",
contact = "https://steamcommunity.com/id/CasKepler2/", "https://steamcommunity.com/id/baconborn/",
}