87 lines
2.2 KiB
Plaintext
87 lines
2.2 KiB
Plaintext
/datum/export/material
|
|
k_elasticity = 0
|
|
cost = 5 // Cost per MINERAL_MATERIAL_AMOUNT, which is 2000cm3 as of April 2016.
|
|
message = "cm3 of developer's tears. Please, report this on github"
|
|
var/material_id = null
|
|
export_types = list(
|
|
/obj/item/stack/sheet/mineral, /obj/item/stack/tile/mineral,
|
|
/obj/item/stack/ore, /obj/item/coin)
|
|
// Yes, it's a base type containing export_types.
|
|
// But it has no material_id, so any applies_to check will return false, and these types reduce amount of copypasta a lot
|
|
|
|
/datum/export/material/get_amount(obj/O)
|
|
if(!material_id)
|
|
return 0
|
|
if(!isitem(O))
|
|
return 0
|
|
var/obj/item/I = O
|
|
if(!(material_id in I.materials))
|
|
return 0
|
|
|
|
var/amount = I.materials[material_id]
|
|
|
|
if(istype(I, /obj/item/stack))
|
|
var/obj/item/stack/S = I
|
|
amount *= S.amount
|
|
if(istype(I, /obj/item/stack/ore))
|
|
amount *= 0.8 // Station's ore redemption equipment is really goddamn good.
|
|
|
|
return round(amount/MINERAL_MATERIAL_AMOUNT)
|
|
|
|
// Materials. Selling raw can lead to a big payout but takes a lot of work for miners to get a lot. Best to craft art/rnd gear
|
|
|
|
/datum/export/material/bananium
|
|
cost = 500
|
|
material_id = MAT_BANANIUM
|
|
message = "cm3 of bananium"
|
|
|
|
/datum/export/material/diamond
|
|
cost = 250
|
|
material_id = MAT_DIAMOND
|
|
message = "cm3 of diamonds"
|
|
|
|
/datum/export/material/plasma
|
|
cost = 100
|
|
material_id = MAT_PLASMA
|
|
message = "cm3 of plasma"
|
|
|
|
/datum/export/material/uranium
|
|
cost = 50
|
|
material_id = MAT_URANIUM
|
|
message = "cm3 of uranium"
|
|
|
|
/datum/export/material/gold
|
|
cost = 60
|
|
material_id = MAT_GOLD
|
|
message = "cm3 of gold"
|
|
|
|
/datum/export/material/silver
|
|
cost = 25
|
|
material_id = MAT_SILVER
|
|
message = "cm3 of silver"
|
|
|
|
/datum/export/material/titanium
|
|
cost = 60
|
|
material_id = MAT_TITANIUM
|
|
message = "cm3 of titanium"
|
|
|
|
/datum/export/material/plastic
|
|
cost = 5
|
|
material_id = MAT_PLASTIC
|
|
message = "cm3 of plastic"
|
|
|
|
/datum/export/material/metal
|
|
cost = 3
|
|
message = "cm3 of metal"
|
|
material_id = MAT_METAL
|
|
export_types = list(
|
|
/obj/item/stack/sheet/metal, /obj/item/stack/tile/plasteel,
|
|
/obj/item/stack/rods, /obj/item/stack/ore, /obj/item/coin)
|
|
|
|
/datum/export/material/glass
|
|
cost = 3
|
|
message = "cm3 of glass"
|
|
material_id = MAT_GLASS
|
|
export_types = list(/obj/item/stack/sheet/glass, /obj/item/stack/ore,
|
|
/obj/item/shard)
|