-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added the new operators and some counters for them + Readme update #250
Open
lilyhuang-github
wants to merge
19
commits into
BurkusCat:master
Choose a base branch
from
lilyhuang-github:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
0b605df
add sens
lilyhuang-github 96dfa2b
add grim
lilyhuang-github d9e7dca
add solis
lilyhuang-github 83bbfd5
added brava
lilyhuang-github c251e9a
added most recent operators
lilyhuang-github 5ad1e1c
fixed mispelling
lilyhuang-github 8866341
add counters for thorn
lilyhuang-github b90e519
azami counters
lilyhuang-github 4471520
some counters
lilyhuang-github ce6b819
brava counters
lilyhuang-github 410bc09
fix typo
lilyhuang-github 4f92749
Merge pull request #1 from BurkusCat/master
lilyhuang-github 840e196
added fenrir counters
lilyhuang-github 66e1878
ram counter
lilyhuang-github 85a6cb6
tubarao counters
lilyhuang-github b8f4e53
more extensive tubarao counters
lilyhuang-github 1900c35
deimos counters
lilyhuang-github 8203c0d
skopos counters
lilyhuang-github 7304c9b
Merge branch 'master' of https://github.com/lilyhuang-github/r6-opera…
lilyhuang-github 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 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 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 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 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 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,26 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let brava = new Operator(r6operators.brava, operatorId.brava, "Operation Commanding Force"); | ||
|
||
brava.addCounterNode(operatorId.alibi, counterType.minor, "Brava's Krudge drone can hack Alibi's prismas"); | ||
brava.addCounterNode(operatorId.aruni, counterType.hard, "Brava's Krudge drone can hack Aruni's surya gates"); | ||
brava.addCounterNode(operatorId.echo, counterType.hard, "Brava's Krudge drone can hack Echo's yokai drone and controll it"); | ||
brava.addCounterNode(operatorId.ela, counterType.soft, "Brava's Krudge drone can hack Ela's grzmot mines"); | ||
brava.addCounterNode(operatorId.jager, counterType.soft, "Brava's Krudge drone can hack Jager's ADS"); | ||
brava.addCounterNode(operatorId.kapkan, counterType.soft, "Brava's Krudge drone can hack Kapkan's EDDs"); | ||
brava.addCounterNode(operatorId.maestro, counterType.hard, "Brava's Krudge drone can hack Maestro's evil eye and controll it"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A couple of the Brava counters have a typo for "control" |
||
brava.addCounterNode(operatorId.melusi, counterType.hard, "Brava's Krudge drone can hack Melusi's banshee"); | ||
brava.addCounterNode(operatorId.mozzie, counterType.minor, "Brava's Krudge drone can hack Mozzie's pests"); | ||
brava.addCounterNode(operatorId.mute, counterType.hard, "Brava's Krudge drone can hack Mute's jammers"); | ||
brava.addCounterNode(operatorId.thorn, counterType.hard, "Brava's Krudge drone can hack Thorn's razorblooms"); | ||
brava.addCounterNode(operatorId.valkyrie, counterType.hard, "Brava's Krudge drone can hack Valkyrie's black eyes"); | ||
brava.addCounterNode(operatorId.fenrir, counterType.hard, "Brava's Krudge drone can hack Fenrir's Dread Mines"); | ||
brava.addCounterNode(operatorId.skopos, counterType.hard, "Brava's Krudge drone can destroy Skopos' inactive shell"); | ||
|
||
|
||
export default brava |
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,11 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let deimos = new Operator(r6operators.deimos, operatorId.deimos, "Operation Deadly Omen"); | ||
|
||
|
||
export default deimos |
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,10 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let fenrir = new Operator(r6operators.fenrir, operatorId.fenrir, "Operation Dead Factor"); | ||
|
||
export default fenrir |
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
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
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,11 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let grim = new Operator(r6operators.grim, operatorId.grim, "Operation Brutal Swarm"); | ||
|
||
|
||
export default grim |
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
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
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
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
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
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
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,10 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let ram = new Operator(r6operators.ram, operatorId.ram, "Operation Heavy Mettle"); | ||
|
||
export default ram |
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,10 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let sens = new Operator(r6operators.sens, operatorId.sens, "Operation Vector Glare"); | ||
|
||
export default sens |
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,10 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let sentry = new Operator(r6operators.sentry, operatorId.sentry, "Operation New Blood"); | ||
|
||
export default sentry |
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,10 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let skopos = new Operator(r6operators.skopos, operatorId.skopos, "Operation Twin Shells"); | ||
|
||
export default skopos |
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,16 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let solis = new Operator(r6operators.solis, operatorId.solis, "Operation Solar Raid"); | ||
|
||
// solis.addCounterNode(r6operators.blitz, counterType.hard, "Solis' visor can detect Blitz's shield while being held and therefore him.") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should these ones be commented out? |
||
// solis.addCounterNode(r6operators.jackal, counterType.hard, "Solis' visor can detect Jackel's helmet while active.") | ||
// solis.addCounterNode(r6operators.nomad, counterType.soft, "Solis' visor can detect Nomad's airjabs.") | ||
// solis.addCounterNode(r6operators.brava, counterType.hard, "Solis' visor can detect and track Brava's krudge drone.") | ||
|
||
|
||
export default solis |
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,10 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let striker = new Operator(r6operators.striker, operatorId.striker, "Operation New Blood"); | ||
|
||
export default striker |
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
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,25 @@ | ||
'use strict'; | ||
|
||
import counterType from '../core/counterTypeEnums.js'; | ||
import operatorId from '../core/operatorIdEnum.js'; | ||
import Operator from '../core/operatorFactory.js'; | ||
import r6operators from "r6operators"; | ||
|
||
let tubarao = new Operator(r6operators.tubarao, operatorId.tubarao, "Operation Deep Freeze"); | ||
|
||
|
||
tubarao.addCounterNode(operatorId.thermite, counterType.hard, "Tubarao's Zoto Cannister can delay Thermite's Exothermic Charge from triggering."); | ||
tubarao.addCounterNode(operatorId.hibana, counterType.hard, "Tubarao's Zoto Cannister can delay Hibana's X-KARIOS pellets from triggering."); | ||
tubarao.addCounterNode(operatorId.ace, counterType.hard, "Tubarao's Zoto Cannister can delay Ace's SELMA Breaching Device from triggering."); | ||
tubarao.addCounterNode(operatorId.ram, counterType.hard, "Tubarao's Zoto Cannister can delay Ram's BU-GI from moving."); | ||
tubarao.addCounterNode(operatorId.ash, counterType.soft, "Tubarao's Zoto Cannister delay's Ash's breaching charge from activating."); | ||
tubarao.addCounterNode(operatorId.glaz, counterType.hard, "Tubarao's Zoto Cannister can prevent Glaz's thermal scope from working and prevent defenders who are in the area from showing up on Glaz's thermal scope"); | ||
tubarao.addCounterNode(operatorId.fuze, counterType.soft, "Tubarao's Zoto Cannister can prevent Fuze's Cluster Charge from activating"); | ||
tubarao.addCounterNode(operatorId.blitz, counterType.soft, "Tubarao's Zoto Cannister can prevent Blitz's Flash Charge from working"); | ||
tubarao.addCounterNode(operatorId.iq, counterType.hard, "Tubarao's Zoto Cannister can prevent Iq's Electronics Detector from scanning and prevents defender electronics from being scanned"); | ||
tubarao.addCounterNode(operatorId.jackal, counterType.soft, "Tubarao's Zoto Cannister can stop Jackal from activating his Eyenox"); | ||
tubarao.addCounterNode(operatorId.ying, counterType.hard, "Tubarao's Zoto Cannister can make Ying vulnerable to her own Candelas and delay Candelas from activating"); | ||
tubarao.addCounterNode(operatorId.dokkaebi, counterType.hard, "Tubarao's Zoto Cannister can prevent Dokkaebi from activating her hack and prevent defenders from getting hacked"); | ||
|
||
|
||
export default tubarao |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry to be a pain, are you able to make sure any new ones you've added have a full stop / period at the end, please?