yield/spread buffs, belter buff, bore nopin

This commit is contained in:
Hatterhat
2020-10-25 19:09:10 -05:00
parent 5025eced89
commit a229df6822
3 changed files with 16 additions and 15 deletions

View File

@@ -43,7 +43,7 @@ var/global/list/ore_data = list()
smelts_to = "iron"
alloy = 1
result_amount = 5
spread_chance = 25
spread_chance = 30
ore = /obj/item/ore/iron
scan_icon = "mineral_common"
@@ -53,7 +53,7 @@ var/global/list/ore_data = list()
smelts_to = "plastic"
alloy = 1
result_amount = 5
spread_chance = 25
spread_chance = 30
ore = /obj/item/ore/coal
scan_icon = "mineral_common"
@@ -69,7 +69,7 @@ var/global/list/ore_data = list()
display_name = "phoron crystals"
compresses_to = "phoron"
//smelts_to = something that explodes violently on the conveyor, huhuhuhu
result_amount = 5
result_amount = 8
spread_chance = 25
ore = /obj/item/ore/phoron
scan_icon = "mineral_uncommon"
@@ -86,7 +86,7 @@ var/global/list/ore_data = list()
display_name = "native silver"
smelts_to = "silver"
result_amount = 5
spread_chance = 10
spread_chance = 18
ore = /obj/item/ore/silver
scan_icon = "mineral_uncommon"
@@ -95,7 +95,7 @@ var/global/list/ore_data = list()
name = "gold"
display_name = "native gold"
result_amount = 5
spread_chance = 10
spread_chance = 15
ore = /obj/item/ore/gold
scan_icon = "mineral_uncommon"
xarch_ages = list(
@@ -110,8 +110,8 @@ var/global/list/ore_data = list()
display_name = "diamond"
alloy = 1
compresses_to = "diamond"
result_amount = 5
spread_chance = 10
result_amount = 6
spread_chance = 15
ore = /obj/item/ore/diamond
scan_icon = "mineral_rare"
xarch_source_mineral = "nitrogen"
@@ -123,7 +123,7 @@ var/global/list/ore_data = list()
compresses_to = "osmium"
alloy = 1
result_amount = 5
spread_chance = 10
spread_chance = 15
ore = /obj/item/ore/osmium
scan_icon = "mineral_rare"
@@ -138,7 +138,7 @@ var/global/list/ore_data = list()
name = MAT_VERDANTIUM
display_name = "crystalline verdantite"
compresses_to = MAT_VERDANTIUM
result_amount = 2
result_amount = 4
spread_chance = 5
ore = /obj/item/ore/verdantium
scan_icon = "mineral_rare"
@@ -151,7 +151,7 @@ var/global/list/ore_data = list()
name = MAT_MARBLE
display_name = "recrystallized carbonate"
compresses_to = "marble"
result_amount = 1
result_amount = 2
spread_chance = 10
ore = /obj/item/ore/marble
scan_icon = "mineral_common"
@@ -160,7 +160,7 @@ var/global/list/ore_data = list()
name = MAT_LEAD
display_name = "lead glance"
smelts_to = "lead"
result_amount = 3
result_amount = 4
spread_chance = 20
ore = /obj/item/ore/lead
scan_icon = "mineral_rare"

View File

@@ -17,6 +17,7 @@
power_cost = 750
load_type = /obj/item/stack/material
no_pin_required = TRUE
var/mat_storage = 0 // How much material is stored inside? Input in multiples of 2000 as per auto/protolathe.
var/max_mat_storage = 8000 // How much material can be stored inside?
var/mat_cost = 500 // How much material is used per-shot?
@@ -168,9 +169,9 @@
//phoron bore 2
/obj/item/gun/magnetic/matfed/advanced
name = "advanced phoron bore"
description_fluff = "A revision of an ageing Grayson design, the NanoTrasen Man-Portable Phorogenic Tunneler, or NT-MPPT is capable of drilling through longer swathes of rock, at the cost of slightly worse power efficiency than the Grayson design."
description_fluff = "A revision of an aging Grayson design, the NanoTrasen Man-Portable Phorogenic Tunneler, or NT-MPPT is capable of drilling through longer swathes of rock, at the cost of slightly worse power efficiency than the Grayson design."
description_antag = "This device is exceptional at breaking down walls, though it is incredibly loud when doing so."
description_info = "The projectile of this tool will travel twelve tiles before dissipating, excavating mineral walls as it does so. It can be reloaded with phoron sheets, and can hold a maximum of ten sheets."
projectile_type = /obj/item/projectile/bullet/magnetic/bore/powerful
power_cost = 1000
max_mat_storage = 20000 // How much material can be stored inside?
max_mat_storage = 20000

View File

@@ -178,7 +178,7 @@
name = "Belter"
location = FERRY_LOCATION_STATION
warmup_time = 6
move_time = 30
move_time = 20 // i am fairly sure this is in seconds
shuttle_area = /area/shuttle/belter
landmark_station = "belter_station"
landmark_offsite = "belter_zone1"
@@ -186,7 +186,7 @@
docking_controller_tag = "belter_docking"
/datum/shuttle/autodock/ferry/belter/New()
move_time = move_time + rand(-10 SECONDS, 20 SECONDS) //50sec max, 20sec min.
move_time = move_time + rand(-5, 10) //30s max, 15s min, probably leaning towards higher values.
..()