-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1dd9033
commit f86a4a2
Showing
3 changed files
with
36 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
local FuelTanks = ACF.Classes.FuelTanks | ||
|
||
FuelTanks.Register("FTS_B", { | ||
Name = "Fuel Box", | ||
Description = "Scalable fuel tank; required for engines to work." | ||
}) | ||
|
||
do | ||
FuelTanks.RegisterItem("Box", "FTS_B", { | ||
Name = "Fuel Box", | ||
Description = "", -- Blank to allow for dynamic descriptions better | ||
Model = "models/fueltank/fueltank_4x4x4.mdl", | ||
Shape = "Box", | ||
Preview = { | ||
FOV = 120, | ||
}, | ||
}) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
local FuelTanks = ACF.Classes.FuelTanks | ||
|
||
FuelTanks.Register("FTS_D", { | ||
Name = "Fuel Drum", | ||
Description = "Scalable fuel drum; required for engines to work." | ||
}) | ||
|
||
do | ||
FuelTanks.RegisterItem("Drum", "FTS_D", { | ||
Name = "Fuel Drum", | ||
Description = "Tends to explode when shot.", | ||
Model = "models/props_c17/oildrum001_explosive.mdl", | ||
Shape = "Drum", | ||
Preview = { | ||
FOV = 120, | ||
}, | ||
}) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters