forked from cataclysmbnteam/Cataclysm-BN
-
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.
Implement bastion star fort, flesh out layout (cataclysmbnteam#3351)
* Implement bastion star fort, flesh out layout * Palette and overmap terrain Easy enough, next step will be the special and likely the first bit actually copied from DDA. * Overmap special next This part's actually based off the DDA version, also included decorative trees so I guess credit for that too but I'm not using JUST t_tree like the DDA version, eh. Co-Authored-By: jokermatt999 <[email protected]> * Fix a small derp * Roof level and some fixes * style(autofix.ci): automated formatting * Add more of the stuff Co-Authored-By: jokermatt999 <[email protected]> * Cannon vehicle stuff next Also fix some stuff and add interior stairs, 2nd floor of powder magazine building now accessible. Co-Authored-By: jokermatt999 <[email protected]> * Fill out powder magazine Also adds a new container that's a better fit than regular barrels. * And do item spawn stuff Co-Authored-By: jokermatt999 <[email protected]> * Spawns go nyoom * Update Bastion_Fort.json * And more things * And that'll be the last vital additions Co-Authored-By: jokermatt999 <[email protected]> * Don't use more powder than the shell weighs Fuuuucking explosive crafting requirements I swear. * Update Bastion_Fort.json * Update locations.json * I am screm * Update locations.json fucking web editor how did I not spot that * fix: ammo type --------- Co-authored-by: jokermatt999 <[email protected]> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: scarf <[email protected]>
- Loading branch information
1 parent
5f26a3c
commit e82ebec
Showing
17 changed files
with
1,004 additions
and
3 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
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,45 @@ | ||
[ | ||
{ | ||
"id": "cannon_explosive_shell", | ||
"copy-from": "cannon_round_ball", | ||
"type": "AMMO", | ||
"name": { "str": "explosive cannon shell" }, | ||
"description": "A bundle of wadding, black gunpowder, and a tightly-packed explosive shell with a percussion fuse. A Civil War era \"common shell\" for cannons of 3-inch bore, whatever it hits probably won't live to regret it.", | ||
"//": "Exact weight of component items.", | ||
"weight": "5051 g", | ||
"volume": "1 L", | ||
"price": "200 USD", | ||
"price_postapoc": "20 USD", | ||
"looks_like": "cannon_round_ball", | ||
"//2": "Base damage of 544, rounded down to 450 to be close to 25% that of round shot, balanced as FMJ.", | ||
"damage": { "damage_type": "bullet", "amount": 450, "armor_penetration": 215 }, | ||
"dispersion": 500, | ||
"recoil": 52500, | ||
"extend": { "effects": [ "EXPLOSIVE", "FRAG" ] } | ||
}, | ||
{ | ||
"id": "cannon_round_ball", | ||
"type": "AMMO", | ||
"name": { "str": "cannon round shot" }, | ||
"description": "A bundle of wadding, black gunpowder, and a 3-inch cast-iron cannonball. An explosive \"common shell\" would be preferable for a Civil War era cannon, but this can still ruin anyone's day.", | ||
"//": "Exact weight of component items.", | ||
"weight": "2576 g", | ||
"volume": "500 ml", | ||
"price": "120 USD", | ||
"price_postapoc": "12 USD", | ||
"material": [ "iron", "powder" ], | ||
"symbol": "=", | ||
"color": "white", | ||
"looks_like": "blun_slug", | ||
"count": 1, | ||
"stack_size": 1, | ||
"ammo_type": "cannon", | ||
"range": 50, | ||
"//2": "Base damage of 352, rounded down to 350, balanced as FMJ.", | ||
"damage": { "damage_type": "bullet", "amount": 350, "armor_penetration": 150 }, | ||
"dispersion": 620, | ||
"recoil": 26250, | ||
"loudness": 900, | ||
"effects": [ "COOKOFF", "MUZZLE_SMOKE", "BLACKPOWDER" ] | ||
} | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[ | ||
{ | ||
"id": "cannon_3in_ordnance", | ||
"copy-from": "launcher_base", | ||
"weapon_category": [ "1SHOT" ], | ||
"type": "GUN", | ||
"name": { "str": "3-inch ordnance rifle" }, | ||
"description": "A light (by artillery standards) rifled cannon widely used in the American Civil War, noted for its reliability.", | ||
"weight": "371946 g", | ||
"volume": "134 L", | ||
"price": "350 USD", | ||
"price_postapoc": "10 USD", | ||
"to_hit": -4, | ||
"bashing": 50, | ||
"material": [ "iron" ], | ||
"color": "dark_gray", | ||
"looks_like": "mark19", | ||
"ammo": "cannon", | ||
"dispersion": 855, | ||
"durability": 5, | ||
"blackpowder_tolerance": 96, | ||
"loudness": 300, | ||
"clip_size": 1, | ||
"reload": 30000, | ||
"valid_mod_locations": [ ], | ||
"flags": [ "MOUNTED_GUN", "NEVER_JAMS" ] | ||
} | ||
] |
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
Oops, something went wrong.