-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Model definitions for 9mm Pistols Signed-off-by: macinsight <[email protected]> * Add Model definitions for Pistol_9mm Signed-off-by: macinsight <[email protected]> * Add Parts definitions for Pistol_9mm Signed-off-by: macinsight <[email protected]> * Add language definitions for Pistol_9mm Signed-off-by: macinsight <[email protected]> * Add fixing definitions for Pistol_9mm Signed-off-by: macinsight <[email protected]> * Add parts definitions for Pistol_9mm Signed-off-by: macinsight <[email protected]> --------- Signed-off-by: macinsight <[email protected]>
- Loading branch information
1 parent
e25ddde
commit 4fad76b
Showing
5 changed files
with
104 additions
and
1 deletion.
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
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
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
43 changes: 43 additions & 0 deletions
43
.../mods/coavinsfirearms/media/scripts/coavinsfirearms/fixings/coavins_fixing_pistol_9mm.txt
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,43 @@ | ||
module coavinsfirearms { | ||
imports { | ||
Base | ||
} | ||
|
||
fixing Fix PistolReceiver_9mm Welding | ||
{ | ||
Require : PistolReceiver_9mm, | ||
GlobalItem : BlowTorch=2, | ||
ConditionModifier : 1.2, | ||
|
||
Fixer : SmallSheetMetal; MetalWelding=3, | ||
Fixer : ScrapMetal; MetalWelding=1, | ||
} | ||
|
||
fixing Fix PistolReceiver_9mm | ||
{ | ||
Require : PistolReceiver_9mm, | ||
ConditionModifier : 1, | ||
|
||
Fixer : DuctTape=2; Aiming=4, | ||
Fixer : Scotchtape=3; Aiming=2, | ||
} | ||
|
||
fixing Fix PistolSlide_9mm Welding | ||
{ | ||
Require : PistolSlide_9mm, | ||
GlobalItem : BlowTorch=2, | ||
ConditionModifier : 1.2, | ||
|
||
Fixer : SmallSheetMetal; MetalWelding=3, | ||
Fixer : ScrapMetal; MetalWelding=1, | ||
} | ||
|
||
fixing Fix PistolBarrel_9mm Welding | ||
{ | ||
Require : PistolBarrel_9mm, | ||
GlobalItem : BlowTorch=5, | ||
ConditionModifier : 1.2, | ||
|
||
Fixer : SmallSheetMetal=2; MetalWelding=8, | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
...s/mods/coavinsfirearms/media/scripts/coavinsfirearms/weapons/coavins_parts_pistol_9mm.txt
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,35 @@ | ||
module coavinsfirearms { | ||
imports { | ||
Base | ||
} | ||
|
||
item PistolReceiver_9mm { | ||
DisplayName = Pistol Frame (9mm), | ||
DisplayCategory = FirearmPart, | ||
Type = Normal, | ||
Icon = PistolReceiver, | ||
Weight = 0.4, | ||
ConditionMax = 20, | ||
WorldStaticModel = Paperbag_Ground, | ||
} | ||
|
||
item PistolSlide_9mm { | ||
DisplayName = Pistol Slide (9mm), | ||
DisplayCategory = FirearmPart, | ||
Type = Normal, | ||
Icon = PistolSlide, | ||
Weight = 0.3, | ||
ConditionMax = 20, | ||
WorldStaticModel = Paperclip, | ||
} | ||
|
||
item PistolBarrel_9mm { | ||
DisplayName = Pistol Barrel (9mm), | ||
DisplayCategory = FirearmPart, | ||
Type = Normal, | ||
Icon = PistolBarrel, | ||
Weight = 0.3, | ||
ConditionMax = 20, | ||
WorldStaticModel = Razor_Ground, | ||
} | ||
} |