Skip to content

Commit

Permalink
Adds 2 tyrmalin charge bulk crates (#6681)
Browse files Browse the repository at this point in the history
Helbera asked for it cutely.

## About The Pull Request

Adds 2 bulkbuy crates. 75 Thaler per charge. Bulkcrate of 5 and one of
10. 50 Thaler = 1 point according to siwicons.

## Why It's Good For The Game

The mining crate is only bought for charges. 2 charges per crate and it
quickly lags up cargo. Kinda sad. QOL kinda.

## Changelog

:cl:
add: Some Tyrmalin explosives experts now decided to bulk ship their
mining charges.
/:cl:
  • Loading branch information
IrkallaEpsilon committed Aug 27, 2024
1 parent 960ed8d commit 6ee90b8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,28 @@
/datum/access/station/supply/mining,
)

/datum/supply_pack/nanotrasen/misc/mining_charges_smallbulk_tyrmalin
name = "Tyrmalin Mining Charge Crate"
contains = list(
/obj/item/grenade/explosive/ied/tyrmalin = 5,
)
container_type = /obj/structure/closet/crate/secure/gear
container_name = "Tyrmalin Mining Charge crate"
container_access = list(
/datum/access/station/supply/mining,
)

/datum/supply_pack/nanotrasen/misc/mining_charges_largebulk_tyrmalin
name = "Bulkpurchase Tyrmalin Mining Charge Crate"
contains = list(
/obj/item/grenade/explosive/ied/tyrmalin = 10,
)
container_type = /obj/structure/closet/crate/secure/gear
container_name = "Tyrmalin Mining Charge crate Bulkbuy!!!"
container_access = list(
/datum/access/station/supply/mining,
)

/datum/supply_pack/nanotrasen/misc/breathing_nitrogen
name = "Emergency Nitrogen Supplies"
contains = list(
Expand Down
1 change: 1 addition & 0 deletions code/game/objects/items/weapons/grenades/explosive.dm
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
explosion_size = 1
det_time = 20
range = 3
worth_intrinsic = 75

/obj/item/grenade/explosive/ied/tyrmalin/on_explosion(var/turf/O)
if(explosion_size)
Expand Down

0 comments on commit 6ee90b8

Please sign in to comment.