Files
CHOMPStation2/code/modules/asset_cache/assets/spritesheets/vore.dm
2025-03-17 00:05:24 +01:00

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)