mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
12 lines
379 B
Plaintext
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)) |