Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 401a319

Browse files
committed
update
1 parent 0cacfd0 commit 401a319

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

yogstation/code/game/machinery/psionic_awakener.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,12 @@
215215
var/faculty = treatments[active_treatment]
216216
var/cost = 0
217217
if(faculty)
218-
cost = 30 //costs 30 base to unlock a specific faculty
218+
cost = 50 //costs 50 base to unlock a specific faculty
219219
if(mob_occupant.psi)
220220
var/faculty_rank = mob_occupant.psi.get_rank(faculty)
221-
cost += max(faculty_rank-1, 0) * 30 //cost 30 more dust per rank beyond that
221+
cost += max(faculty_rank-1, 0) * 35 //cost 35 more dust per rank beyond that
222222
if(faculty_rank >= PSI_RANK_GRANDMASTER) //could maybe tweak this to be exponential scaling rather than linear
223-
cost += 30 //extra 30 to go to paramount (since paramount is fuckin strong)
223+
cost += 50 //extra 50 to go to paramount (since paramount is fuckin strong)
224224
if(faculty_rank >= PSI_RANK_PARAMOUNT)
225225
cost = 9999999
226226
return cost

yogstation/code/game/objects/items/stacks/sheets/nullspace_crystals.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/obj/item/nullspace_crystal/prismatic
2727
name = "aged null skull"
2828
desc = "an older skull of an adept psionic user, grants a lot of nulldust when ground up."
29-
dust = 20
29+
dust = 15
3030
icon_state = "aged_null_skull"
3131
w_class = WEIGHT_CLASS_SMALL
3232

0 commit comments

Comments
 (0)