|
13 | 13 | var/list/unlock_ids = list() //CALCULATED FROM OTHER NODE'S PREREQUISITES. Assoc list id = TRUE. |
14 | 14 | var/list/boost_item_paths = list() //Associative list, path = list(point type = point_value). |
15 | 15 | var/autounlock_by_boost = TRUE //boosting this will autounlock this node. |
16 | | - var/export_price = 0 //Cargo export price. |
17 | 16 | var/list/research_costs = list() //Point cost to research. type = amount |
18 | 17 | var/category = "Misc" //Category |
19 | 18 | var/ui_x = 805 // It's location - override this in techweb_layout.dm |
|
48 | 47 | VARSET_TO_LIST(., assoc_list_strip_value(unlock_ids)) |
49 | 48 | VARSET_TO_LIST(., boost_item_paths) |
50 | 49 | VARSET_TO_LIST(., autounlock_by_boost) |
51 | | - VARSET_TO_LIST(., export_price) |
52 | 50 | VARSET_TO_LIST(., research_costs) |
53 | 51 | VARSET_TO_LIST(., category) |
54 | 52 |
|
|
64 | 62 | VARSET_FROM_LIST(input, unlock_ids) |
65 | 63 | VARSET_FROM_LIST(input, boost_item_paths) |
66 | 64 | VARSET_FROM_LIST(input, autounlock_by_boost) |
67 | | - VARSET_FROM_LIST(input, export_price) |
68 | 65 | VARSET_FROM_LIST(input, research_costs) |
69 | 66 | VARSET_FROM_LIST(input, category) |
70 | 67 | Initialize() |
|
0 commit comments