Files
CHOMPStation2/code/modules/client/preference_setup/loadout/loadout_general_vr.dm
Killian 68e0f2fd23 BALL!
2020-07-04 17:51:39 +01:00

12 lines
379 B
Plaintext

/datum/gear/ball
display_name = "tennis ball selection"
description = "Choose from a num- BALL!"
path = /obj/item/toy/tennis
/datum/gear/ball/New()
..()
var/list/balls = list()
for(var/ball in typesof(/obj/item/toy/tennis/))
var/obj/item/toy/tennis/ball_type = ball
balls[initial(ball_type.name)] = ball_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(balls))