mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
54 lines
1.4 KiB
Lua
54 lines
1.4 KiB
Lua
|
|
--[[
|
||
|
|
| This file was obtained through the combined efforts
|
||
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
||
|
|
|
|
||
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
||
|
|
|
|
||
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
att.PrintName = "Annihilator Handcannon Laser"
|
||
|
|
att.AbbrevName = "Annihilator Laser"
|
||
|
|
att.Icon = Material("entities/att/acwatt_uc_optic_annihilator.png", "mips smooth")
|
||
|
|
att.Description = "Oversized laser module with iron sights, attached on the upper rail."
|
||
|
|
att.Desc_Cons = {
|
||
|
|
"con.beam"
|
||
|
|
}
|
||
|
|
att.AutoStats = true
|
||
|
|
|
||
|
|
att.Slot = {"ur_deagle_tritium"} -- Deagle exclusive until we figure out the problem with the model
|
||
|
|
att.SortOrder = 998 -- Remove when att becomes universal
|
||
|
|
|
||
|
|
att.Model = "models/weapons/arccw/atts/ur_annihilator_laser.mdl"
|
||
|
|
att.ModelOffset = Vector(-6,0,-3.5) -- Will need to change when the model recompiles
|
||
|
|
att.ModelScale = Vector( 0.933, 0.933, 0.933 )
|
||
|
|
|
||
|
|
att.Mult_Sway = 1.5
|
||
|
|
att.Mult_SightTime = 1.25
|
||
|
|
att.Mult_SpeedMult = 0.975
|
||
|
|
|
||
|
|
att.AdditionalSights = {
|
||
|
|
{
|
||
|
|
Pos = Vector(0, 20, -1.62),
|
||
|
|
Ang = Angle(-.2, 0, 0),
|
||
|
|
Magnification = 1,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
att.LaserStrength = 2
|
||
|
|
att.ToggleStats = {
|
||
|
|
{
|
||
|
|
PrintName = "On",
|
||
|
|
Laser = true,
|
||
|
|
LaserBone = "laser",
|
||
|
|
LaserColor = Color(50, 255, 50),
|
||
|
|
Mult_HipDispersion = 0.75,
|
||
|
|
Mult_MoveDispersion = 0.6,
|
||
|
|
Mult_SightTime = 0.85
|
||
|
|
},
|
||
|
|
{
|
||
|
|
PrintName = "Off",
|
||
|
|
Laser = false,
|
||
|
|
},
|
||
|
|
}
|