Skip to content

Commit 79c9729

Browse files
committed
adds space explo kit
1 parent e6a9dfd commit 79c9729

2 files changed

Lines changed: 39 additions & 2 deletions

File tree

config/dbconfig.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ADDRESS localhost
1313
PORT 3306
1414

1515
## Database for all SQL functions, not just feedback.
16-
FEEDBACK_DATABASE tgdb
16+
FEEDBACK_DATABASE massmeta
1717

1818
## Prefix to be added to the name of every table, older databases will require this be set to erro_
1919
## Note, this does not change the table names in the database, you will have to do that yourself.
@@ -27,7 +27,7 @@ FEEDBACK_TABLEPREFIX
2727
FEEDBACK_LOGIN root
2828

2929
## Password used to access the database.
30-
FEEDBACK_PASSWORD 12345678
30+
FEEDBACK_PASSWORD 123
3131

3232
## Time in seconds for asynchronous queries to timeout
3333
## Set to 0 for infinite

modular_meta/features/metacoins/code/shop_items.dm

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,43 @@
3131
price = 75
3232
item_type = /obj/item/reagent_containers/medigel/aiuri
3333

34+
/datum/metacoinshop/listing/preround/eva_kit
35+
id = "extra_vehicular"
36+
name = "Premium EVA-ready kit"
37+
desc = "Full-kit containing a bluespace-compressed jetpack, an oxygen tank, a suit, a helmet and a medkit! Gun included!"
38+
price = 300
39+
item_type = /obj/item/storage/box/eva_kit
40+
41+
/obj/item/storage/box/eva_kit
42+
name = "EVA kit"
43+
desc = "A sturdy looking box, label says \"it has everything needed for space exploration\""
44+
45+
/obj/item/storage/box/eva_kit/Initialize(mapload)
46+
.=..()
47+
var/obj/item/stack/medical/suture/suture = new/obj/item/stack/medical/suture(src)
48+
suture.amount = 10
49+
var/obj/item/stack/medical/mesh/mesh = new /obj/item/stack/medical/mesh(src)
50+
mesh.amount = 10
51+
var/obj/item/stock_parts/power_store/cell/high/cell = new /obj/item/stock_parts/power_store/cell/high(src)
52+
cell.charge = 10000 // the fuck is a cell unit? a thousand I guess? cuz hundred is 0.1%
53+
var/obj/item/tank/jetpack/jpack = new /obj/item/tank/jetpack(src)
54+
//get current gas
55+
var/datum/gas_mixture/gas = jpack.return_air()
56+
gas.assert_gas(jpack.gas_type)
57+
// quadruple it and give it to the next jetpack
58+
gas.gases[jpack.gas_type][MOLES] += ((24 * ONE_ATMOSPHERE) * jpack.volume / (R_IDEAL_GAS_EQUATION * T20C))
59+
jpack.desc += span_notice(" \n Though it definetly seems to have enlarged in proportions when I took it from the box..")
60+
new /obj/item/clothing/suit/space(src)
61+
new /obj/item/clothing/head/helmet/space(src)
62+
new /obj/item/tank/internals/oxygen(src)
63+
new /obj/item/storage/medkit/advanced(src)
64+
new /obj/item/storage/belt/utility/full(src)
65+
new /obj/item/knife/combat/survival(src)
66+
new /obj/item/gun/energy/e_gun/mini(src)
67+
new /obj/item/case_portable_recharger(src)
68+
new /obj/item/manual_cell_recharger(src)
69+
new /obj/item/stock_parts/servo/pico(src)
70+
3471
/datum/metacoinshop/listing/preround/antag_token
3572
id = "antag_token"
3673
name = "Antag Token"

0 commit comments

Comments
 (0)