-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MODULAR] Adds an unnerfed double esword for bitrunning (#24949)
* Adds an unnerfed double esword for bitrunning * Update disks.dm
- Loading branch information
1 parent
3517791
commit c5836e2
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
modular_skyrat/master_files/code/modules/bitrunning/orders/disks.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// removes the nerf in virtual space | ||
/obj/item/dualsaber/green/bitrunning | ||
block_chance = 75 | ||
|
||
// gives them the de-nerfed dual saber | ||
/obj/item/bitrunning_disk/item/tier3/Initialize(mapload) | ||
. = ..() | ||
|
||
selectable_items -= list( | ||
/obj/item/dualsaber/green, | ||
) | ||
selectable_items += list( | ||
/obj/item/dualsaber/green/bitrunning, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters