mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-24 00:03:22 +00:00
16 lines
646 B
Plaintext
16 lines
646 B
Plaintext
/datum/asset/spritesheet/vore
|
|
name = "vore"
|
|
|
|
/datum/asset/spritesheet/vore/create_spritesheets()
|
|
var/icon/downscaled = icon('icons/mob/screen_full_vore_list.dmi') // preserving save data
|
|
downscaled.Scale(240, 240)
|
|
InsertAll("", downscaled)
|
|
|
|
/datum/asset/spritesheet/vore_fixed //This should be getting loaded in the TGUI vore panel but the game refuses to do so, for some reason. It only loads the vore spritesheet.
|
|
name = "fixedvore"
|
|
|
|
/datum/asset/spritesheet/vore_fixed/create_spritesheets() // preserving save data
|
|
var/icon/downscaledVF = icon('icons/mob/screen_full_vore.dmi')
|
|
downscaledVF.Scale(240, 240)
|
|
InsertAll("", downscaledVF)
|