Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --define the class
- ACF_defineGunClass("SBC", {
- spread = 0.35,
- name = "Smooth-Bore Cannon",
- desc = "High velocity guns that tradeoff accuracy for faster shell velocity. Fire slower and are heavier due to more reinforced cannon barrels than their counterparts",
- muzzleflash = "120mm_muzzleflash_noscale",
- rofmod = 2.5,
- sound = "weapons/ACF_Gun/cannon_new.wav",
- soundDistance = "Cannon.Fire",
- soundNormal = " "
- } )
- --add a gun to the class
- ACF_defineGun("100mmSBC", {
- name = "100mm Smoothbore Cannon",
- desc = "100mm Smoothbore, a great cannon for a light tank or tank destroyer",
- model = "models/tankgun_old/tankgun_100mm.mdl",
- gunclass = "SBC",
- caliber = 10.0,
- weight = 3500,
- year = 1960,
- round = {
- maxlength = 93,
- propweight = 20
- }
- } )
- ACF_defineGun("120mmSBC", {
- name = "120mm Smoothbore Cannon",
- desc = "120mm Smoothbore, powerful general purpose main battle tank cannon",
- model = "models/tankgun_old/tankgun_120mm.mdl",
- gunclass = "SBC",
- caliber = 12.0,
- weight = 8000,
- year = 1970,
- round = {
- maxlength = 110,
- propweight = 30
- }
- } )
- ACF_defineGun("140mmSBC", {
- name = "140mm Smoothbore Cannon",
- desc = "140mm Smoothbore, heavy railgun like cannon spawned out of a hatred of 60 tons",
- model = "models/tankgun_old/tankgun_140mm.mdl",
- gunclass = "SBC",
- caliber = 14.0,
- weight = 12000,
- year = 1995,
- round = {
- maxlength = 127,
- propweight = 60
- }
- } )
- --[[
- ACF_defineGun("170mmC", {
- name = "170mm Cannon",
- desc = "The 170mm fires a gigantic shell with ginormous penetrative capability, but has a glacial reload speed and an extremely hefty weight.",
- model = "models/tankgun/tankgun_170mm.mdl",
- gunclass = "C",
- caliber = 17.0,
- weight = 12350,
- year = 1990,
- round = {
- maxlength = 154,
- propweight = 34
- }
- } )
- ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement