mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-20 23:21:20 +00:00
* Flavour Lore: Guns * New guns/sprites, crates, etc. * couple o oversights fixed * couple o oversights fixed * final tweekz
23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
/obj/item/weapon/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_LARGE
|
||
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/weapon/gun/projectile/caseless/prototype/update_icon()
|
||
if(ammo_magazine)
|
||
icon_state = initial(icon_state)
|
||
else
|
||
icon_state = "[initial(icon_state)]-empty"
|
||
|
||
/obj/item/weapon/gun/projectile/caseless/prototype/loaded
|
||
magazine_type = /obj/item/ammo_magazine/m5mmcaseless |