This repository was archived by the owner on May 22, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 457
Mantis blade (new traitor item) #11348
Closed
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
8bfcbe7
humyes
enkidienne d7f3ea0
.
enkidienne 944d78a
3
enkidienne 1790713
.
enkidienne b4dc02f
Update mantis.dm
enkidienne ee16fb3
Update mantis.dm
enkidienne 8d40aae
Update mantis.dm
enkidienne 9400a73
Update mantis.dm
enkidienne f70abe2
a
enkidienne d27f9ae
a
enkidienne bb7f0e6
j
enkidienne e4fdde7
a
enkidienne 93ea017
52
enkidienne f1a7f9e
Update briefcase.dm
enkidienne 56019e2
h
enkidienne 5f4ca1b
j
enkidienne 6df5221
Update uplink_item.dm
enkidienne 9867821
Update augments_arms.dm
enkidienne eb367c4
reduce cost to 16 TC
enkidienne 8ea7c80
trying to fix conclic
enkidienne a882d4a
yes?
enkidienne 19b5be2
Revert "trying to fix conclic"
enkidienne f19e37b
Revert "yes?"
enkidienne 14ed119
test
enkidienne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,41 @@ | ||
| /obj/item/mantis/blade | ||
| name = "mantis blade" | ||
| desc = "Powerful inbuilt blade, hidden just beneath the skin. Singular brain signals directly link to this bad boy, allowing it to spring into action in just seconds." | ||
| icon_state = "mantis" | ||
| lefthand_file = 'icons/mob/inhands/weapons/swords_lefthand.dmi' | ||
| righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi' | ||
| hitsound = 'sound/weapons/bladeslice.ogg' | ||
| flags_1 = CONDUCT_1 | ||
| force = 20 | ||
| w_class = WEIGHT_CLASS_NORMAL | ||
| attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "lacerated", "ripped", "diced", "cut") | ||
|
|
||
| /obj/item/mantis/blade/equipped(mob/user, slot, initial) | ||
| . = ..() | ||
| if(slot != ITEM_SLOT_HANDS) | ||
| return | ||
| var/side = user.get_held_index_of_item(src) | ||
|
|
||
| if(side == LEFT_HANDS) | ||
| transform = null | ||
| else | ||
| transform = matrix(-1, 0, 0, 0, 1, 0) | ||
|
|
||
| /obj/item/mantis/blade/attack(mob/living/M, mob/living/user, secondattack = FALSE) | ||
| . = ..() | ||
| var/obj/item/mantis/blade/secondsword = user.get_inactive_held_item() | ||
| if(istype(secondsword, /obj/item/mantis/blade) && !secondattack) | ||
| sleep(2) | ||
| secondsword.attack(M, user, TRUE) | ||
| return | ||
|
|
||
| /obj/item/mantis/blade/syndicate | ||
| name = "G.O.R.L.E.X. mantis blade" | ||
| icon_state = "syndie_mantis" | ||
| force = 20 | ||
| block_chance = 20 | ||
|
|
||
| /obj/item/mantis/blade/NT | ||
| name = "H.E.P.H.A.E.S.T.U.S. mantis blade" | ||
| icon_state = "mantis" | ||
| force = 18 | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.