mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-20 15:46:32 +01:00
- all cells in the game are now small, medium, large - super, hyper capacity cells, device, and weapon cells are all removed - cells now have standardized variants, some of which are printable by R&D - energy weapons rebalanced - **advanced energy guns and stun revolvers removed** - use the new modular weapon system and microfission cells. --------- Co-authored-by: silicons <silicons@silicons.dev>
18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
//* This file is explicitly licensed under the MIT license. *//
|
|
//* Copyright (c) 2024 Citadel Station Developers *//
|
|
|
|
/datum/passive_parry/shield
|
|
parry_arc = 155
|
|
parry_arc_round_down = TRUE
|
|
parry_frame = /datum/parry_frame/passive_block/shield
|
|
|
|
/datum/parry_frame/passive_block/shield
|
|
parry_sfx = /datum/soundbyte/grouped/block_metal_with_metal
|
|
block_verb = "blocks" // full block for now
|
|
|
|
/obj/item/shield
|
|
name = "shield"
|
|
passive_parry = /datum/passive_parry/shield{
|
|
parry_chance_default = 50;
|
|
}
|