mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-05 14:17:12 +01:00
dff70625e7
## About The Pull Request This started as a simple addition where burning a bible would curse you, but then I realized... Bibles aren't even proper books, thus can't be burned! So yeah, since that is not necessary due to how atom_storage works, I reworked that. ## Why It's Good For The Game Because burning bibles and getting cursed for it is funny.   ## Changelog 🆑 add: You can burn bibles now! But heresy has a steep cost... /🆑 --------- Co-authored-by: san7890 <the@san7890.com>
11 lines
344 B
Plaintext
11 lines
344 B
Plaintext
/datum/asset/spritesheet/bibles
|
|
name = "bibles"
|
|
|
|
/datum/asset/spritesheet/bibles/create_spritesheets()
|
|
var/obj/item/book/bible/holy_template = /obj/item/book/bible
|
|
InsertAll("display", initial(holy_template.icon))
|
|
|
|
/datum/asset/spritesheet/bibles/ModifyInserted(icon/pre_asset)
|
|
pre_asset.Scale(224, 224) // Scale up by 7x
|
|
return pre_asset
|