Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

techpoint price change #6410

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 3 additions & 21 deletions code/datums/supply_packs/operations.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,12 @@
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/warhead/incendiary,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/warhead/incendiary,
)

name = "OB Incendiary Crate"
cost = 0
containertype = /obj/structure/closet/crate/secure/ob
containername = "OB Ammo Crate (Incendiary x2)"
containername = "OB Ammo Crate (Incendiary)"
buyable = 0
group = "Operations"

Expand All @@ -33,18 +27,12 @@
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/warhead/explosive,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/warhead/explosive,
)

name = "OB HE Crate"
cost = 0
containertype = /obj/structure/closet/crate/secure/ob
containername = "OB Ammo Crate (HE x2)"
containername = "OB Ammo Crate (HE)"
buyable = 0
group = "Operations"

Expand All @@ -56,18 +44,12 @@
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/warhead/cluster,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/ob_fuel,
/obj/structure/ob_ammo/warhead/cluster,
)

name = "OB Cluster Crate"
cost = 0
containertype = /obj/structure/closet/crate/secure/ob
containername = "OB Ammo Crate (Cluster x2)"
containername = "OB Ammo Crate (Cluster)"
buyable = 0
group = "Operations"

Expand Down
8 changes: 4 additions & 4 deletions code/modules/cm_tech/techs/marine/tier1/points.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
announce_name = "ALMAYER SPECIAL ASSETS AUTHORIZED"
announce_message = "Additional supply budget has been authorised for this operation."

required_points = 15
required_points = 7
increase_per_purchase = 1

flags = TREE_FLAG_MARINE
tier = /datum/tier/one

var/points_to_give = 100
var/points_to_give = 50

/datum/tech/repeatable/req_points/proc/get_tech_scaling_value()
//We take the number of marine players, deduced from other lists, and then get a scale multiplier from it, to be used in arbitrary manners to distribute equipment
Expand All @@ -33,13 +33,13 @@

announce_message = "Additional dropship part fabricator points have been authorised for this operation."

required_points = 12
required_points = 6
increase_per_purchase = 1

flags = TREE_FLAG_MARINE
tier = /datum/tier/one

var/points_to_give = 2500
var/points_to_give = 2000

/datum/tech/repeatable/dropship_points/on_unlock()
. = ..()
Expand Down
2 changes: 1 addition & 1 deletion code/modules/cm_tech/techs/marine/tier2/orbital_ammo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "OB Ammo"
desc = "Purchase orbital bombardment ammo."

required_points = 10
required_points = 5
increase_per_purchase = 2

tier = /datum/tier/two
Expand Down
Loading