forked from spring1944/campaign
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
23 changed files
with
138 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
local plSorties = { | ||
pl_sortie_recon = { | ||
members = { | ||
"plrwd8", | ||
}, | ||
delay = 15, | ||
name = "Recon Sortie", | ||
description = "1 x RWD-8 Plane", | ||
buildCostMetal = 1000, | ||
buildPic = "plrwd8.png", | ||
}, | ||
|
||
} | ||
|
||
return plSorties |
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,41 @@ | ||
[PLFiat508_III_Abandoned] | ||
{ | ||
description=Abandoned Radio Vehicle; | ||
damage=2501; | ||
energy=50; | ||
featureDead=PLFiat508_III_Burning; | ||
footprintX=2; | ||
footprintZ=2; | ||
object=PLFiat508_III_dead.s3o; | ||
reclaimable=1; | ||
collisionVolumeType=cylX; | ||
collisionVolumeScales=18 15 35; | ||
collisionVolumeOffsets=0 -5 0; | ||
[customParams] | ||
{ | ||
cover_strength=2; | ||
cover_radius=40; | ||
|
||
} | ||
} | ||
|
||
[PLFiat508_III_Burning] | ||
{ | ||
description=Destroyed Radio Vehicle; | ||
damage=2501; | ||
energy=50; | ||
footprintX=2; | ||
footprintZ=2; | ||
object=PLFiat508_III_wreck.s3o; | ||
reclaimable=1; | ||
collisionVolumeType=cylX; | ||
collisionVolumeScales=18 15 35; | ||
collisionVolumeOffsets=0 -5 0; | ||
[customParams] | ||
{ | ||
ceg_created=Burning; | ||
cover_strength=2; | ||
cover_radius=40; | ||
|
||
} | ||
} |
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,21 @@ | ||
[plrwd8_ground] | ||
{ | ||
description=Scout Plane; | ||
damage=100; | ||
energy=50; | ||
featureDead=Debris_Small; | ||
footprintX=2; | ||
footprintZ=2; | ||
object=plrwd8_ground.s3o; | ||
reclaimable=1; | ||
collisionVolumeType=cylX; | ||
collisionVolumeScales=18 15 35; | ||
collisionVolumeOffsets=0 -5 0; | ||
[customParams] | ||
{ | ||
ceg_created=Burning; | ||
cover_strength=2; | ||
cover_radius=40; | ||
|
||
} | ||
} |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,16 @@ | ||
local PLRWD8 = Recon:New{ | ||
name = "RWD 8", | ||
maxDamage = 75, | ||
|
||
maxAcc = 0.480, | ||
|
||
customParams = { | ||
enginesound = "po2-", | ||
enginesoundnr = 11, | ||
}, | ||
} | ||
|
||
|
||
return lowerkeys({ | ||
["PLRWD8"] = PLRWD8, | ||
}) |
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 PL_Fiat508_III = Truck:New{ | ||
name = "Polski Fiat 508/III", | ||
decription = "Mobile Long Range Radio Station", | ||
trackOffset = 4, | ||
trackWidth = 11, | ||
corpse = "PLFiat508_III_Abandoned", | ||
objectName = "PL/PLFiat508_III.s3o", | ||
} | ||
|
||
local PL_Radar = Radar:New{ | ||
name = "Long-range radio communication post", | ||
corpse = "PLFiat508_III_Abandoned", | ||
} | ||
|
||
return lowerkeys({ | ||
["PLFiat508_III"] = PL_Fiat508_III, | ||
["plradar"] = PL_Radar, | ||
}) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.