Skip to content

Commit

Permalink
TWEAK: Cheaper BFL (#3485)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErdGinalD authored Sep 9, 2023
1 parent 40125bf commit f658e1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions code/datums/supplypacks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2139,7 +2139,7 @@ GLOBAL_LIST_INIT(all_supply_groups, list(SUPPLY_EMERGENCY,SUPPLY_SECURITY,SUPPLY

/datum/supply_packs/misc/station_goal/bfl
name = "BFL assembly crate"
cost = 150
cost = 50
contains = list(
/obj/item/circuitboard/machine/bfl_emitter,
/obj/item/circuitboard/machine/bfl_receiver
Expand All @@ -2148,7 +2148,7 @@ GLOBAL_LIST_INIT(all_supply_groups, list(SUPPLY_EMERGENCY,SUPPLY_SECURITY,SUPPLY

/datum/supply_packs/misc/station_goal/bfl_lens
name = "BFL High-precision lens"
cost = 200
cost = 100
contains = list(
/obj/machinery/bfl_lens
)
Expand Down
12 changes: 4 additions & 8 deletions code/modules/station_goals/bfl.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,11 @@
build_path = /obj/machinery/power/bfl_emitter
origin_tech = "engineering=4;combat=4;bluespace=4"
req_components = list(
/obj/item/stack/sheet/metal = 5,
/obj/item/stack/rods = 20,
/obj/item/stack/sheet/plasteel = 10,
/obj/item/stack/sheet/plasmaglass = 4,
/obj/item/stock_parts/manipulator/femto = 2,
/obj/item/stock_parts/capacitor/quadratic = 5,
/obj/item/stock_parts/micro_laser/quadultra = 20,
/obj/item/gun/energy/lasercannon = 4,
/obj/item/stack/cable_coil = 6)
/obj/item/stock_parts/micro_laser/quadultra = 10,
/obj/item/stack/sheet/mineral/diamond = 2)

/obj/item/circuitboard/machine/bfl_receiver
name = "BFL Receiver (Machine Board)"
Expand All @@ -60,8 +57,7 @@
req_components = list(
/obj/item/stack/sheet/metal = 20,
/obj/item/stack/sheet/plasteel = 10,
/obj/item/stack/sheet/plasmaglass = 20,
/obj/item/stack/sheet/mineral/diamond = 8)
/obj/item/stack/sheet/plasmaglass = 20)

///////////
//Emitter//
Expand Down

0 comments on commit f658e1d

Please sign in to comment.