mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
/obj/item/gun/projectile/caseless/prototype
|
||
name = "prototype caseless rifle"
|
||
desc = "The GC1 is a rifle cooked up in Gilthari Exports's R&D labs that operates with barely comprehensible clockwork internals. Uses solid phoron 5mm caseless rounds."
|
||
description_fluff = "Gilthari is Sol’s premier supplier of luxury goods, specializing in extracting money from the rich and successful. \
|
||
The GC1 is currently undergoing limited consumer trials, and is firmly aimed at a segment of the enthusiast market with more money than sense."
|
||
icon_state = "caseless"
|
||
item_state = "caseless"
|
||
w_class = ITEMSIZE_HUGE //CHOMP Edit.
|
||
caliber = "5mm caseless"
|
||
origin_tech = list(TECH_COMBAT = 2, TECH_MATERIAL = 3)
|
||
slot_flags = SLOT_BACK
|
||
load_method = MAGAZINE
|
||
magazine_type = null // R&D builds this. Starts unloaded.
|
||
allowed_magazines = list(/obj/item/ammo_magazine/m5mmcaseless)
|
||
|
||
/obj/item/gun/projectile/caseless/prototype/update_icon()
|
||
if(ammo_magazine)
|
||
icon_state = initial(icon_state)
|
||
else
|
||
icon_state = "[initial(icon_state)]-empty"
|
||
|
||
/obj/item/gun/projectile/caseless/prototype/loaded
|
||
magazine_type = /obj/item/ammo_magazine/m5mmcaseless |