Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions tff_modular/modules/organs/eyes/code/eyes.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/obj/item/organ/eyes/neweyespack // You can create new eyes here. Modify eyes.dmi in icon folder
name = "new eyes pack eyes"
desc = "If you see this item, report to maintainer"
eye_icon = 'tff_modular/modules/organs/eyes/icons/eyes.dmi'
blink_animation = FALSE

/obj/item/organ/eyes/robotic/neweyespack // You can create new eyes here. This one is for robotic versions. Modify eyes.dmi in icon folder
name = "robotic new eyes pack eyes"
desc = "If you see this item, report to maintainer"
eye_icon = 'tff_modular/modules/organs/eyes/icons/eyes.dmi'
blink_animation = FALSE

/obj/item/organ/eyes/neweyespack/insect
name = "insect eyes"
desc = "Prettier than moff eyes"
eye_icon_state = "insect"
pupils_name = "there is no pupils"

/datum/augment_item/organ/eyes/insect
name = "insect eyes"
path = /obj/item/organ/eyes/neweyespack/insect

/obj/item/organ/eyes/robotic/neweyespack/insect
name = "robotic insect eyes"
desc = "Prettier than robotic moff eyes"
eye_icon_state = "insect"
pupils_name = "there is no pupils"

/datum/augment_item/organ/eyes/cyberinsect
name = "Cybernetic insect eyes"
path = /obj/item/organ/eyes/robotic/neweyespack/insect
Binary file added tff_modular/modules/organs/eyes/icons/eyes.dmi
Binary file not shown.
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -9885,6 +9885,7 @@
#include "tff_modular\modules\new_year_pack\code\~cargo.dm"
#include "tff_modular\modules\OldWaterbreathQuirk\oldwaterbreathquirk.dm"
#include "tff_modular\modules\opposing_force\code.dm"
#include "tff_modular\modules\organs\eyes\code\eyes.dm"
#include "tff_modular\modules\plantdnamanipulator\flatpacked_smartfridge.dm"
#include "tff_modular\modules\plantdnamanipulator\manipulator.dm"
#include "tff_modular\modules\police_nt\code\modsuit.dm"
Expand Down
Loading