Skip to content

Commit

Permalink
Change FK88 ammo cost in factory and add granade launcher ammo (#786)
Browse files Browse the repository at this point in the history
* cost change and grande launcher can crafted

* review fix 1

* выпел говна
  • Loading branch information
MalorMorfin authored Dec 12, 2024
1 parent 3982cb6 commit 13622de
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
6 changes: 6 additions & 0 deletions code/modules/reqs/supplypacks/vehicles.dm
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
cost = 10
containertype = /obj/structure/closet/crate/ammo

/datum/supply_packs/vehicles/tank_glauncher
name = "Tank grenade laucnher magazine"
contains = list(/obj/item/ammo_magazine/tank/tank_glauncher)
cost = 10
containertype = /obj/structure/closet/crate/ammo

/datum/supply_packs/vehicles/motorbike
name = "All-Terrain Motorbike"
cost = 400
Expand Down
23 changes: 14 additions & 9 deletions code/modules/reqtorio/assembly_crafts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -308,25 +308,30 @@ WEAPONS

/datum/assembly_craft/weapons/ltb_shells
name = "LTB tank shell"
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 5)
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 2)
output = list(/obj/item/ammo_magazine/tank/ltb_cannon = 1)

/datum/assembly_craft/weapons/ltb_cannon_apfds
name = "LTB tank APFDS shell"
input = list(/obj/item/stack/sheet/jeweler_steel = 2, /obj/item/stack/gun_powder = 3)
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 2)
output = list(/obj/item/ammo_magazine/tank/ltb_cannon/apfds = 1)

/datum/assembly_craft/weapons/ltb_cannon_TOW
name = "TOW Launcher Magazine"
input = list(/obj/item/stack/sheet/jeweler_steel = 3, /obj/item/stack/gun_powder = 6)
input = list(/obj/item/stack/sheet/jeweler_steel = 2, /obj/item/stack/gun_powder = 1)
output = list(/obj/item/ammo_magazine/tank/towlauncher = 1)

/datum/assembly_craft/weapons/gl_explosive_tank_ammo
name = "Tank grenade launcher magazine"
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 1)
output = list(/obj/item/ammo_magazine/tank/tank_glauncher = 1)

/datum/assembly_craft/weapons/heavy_isg_he
name = "A 15cm HE shell for the FK-88 mounted flak gun."
input = list(/obj/item/stack/sheet/jeweler_steel = 25, /obj/item/stack/gun_powder = 30)
output = list(/obj/item/ammo_magazine/heavy_isg/he = 1)
name = "A 155mm HE shell for the FK-88 mounted flak gun."
input = list(/obj/item/stack/sheet/jeweler_steel = 5, /obj/item/stack/gun_powder = 6) // 35 + 48 points
output = list(/obj/item/ammo_magazine/heavy_isg/he = 1) // 83 points +-

/datum/assembly_craft/weapons/heavy_isg_sabot
name = "A 15cm APFDS shell for the FK-88 mounted flak gun"
input = list(/obj/item/stack/sheet/jeweler_steel = 30, /obj/item/stack/gun_powder = 25)
output = list(/obj/item/ammo_magazine/heavy_isg/sabot = 1)
name = "A 155mm APFDS shell for the FK-88 mounted flak gun"
input = list(/obj/item/stack/sheet/jeweler_steel = 5, /obj/item/stack/gun_powder = 7) // 35 + 56 points
output = list(/obj/item/ammo_magazine/heavy_isg/sabot = 1) // 91 points +-

0 comments on commit 13622de

Please sign in to comment.