mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
19 lines
378 B
Plaintext
19 lines
378 B
Plaintext
|
|
/obj/item/weapon/fuel_assembly
|
|
icon = 'icons/obj/machines/rust.dmi'
|
|
icon_state = "fuel_assembly"
|
|
name = "fuel rod assembly"
|
|
var/list/rod_quantities
|
|
var/percent_depleted = 1
|
|
layer = ABOVE_OBJ_LAYER
|
|
|
|
/obj/item/weapon/fuel_assembly/New()
|
|
. = ..()
|
|
rod_quantities = list()
|
|
|
|
//these can be abstracted away for now
|
|
/*
|
|
/obj/item/weapon/fuel_rod
|
|
/obj/item/weapon/control_rod
|
|
*/
|