Example #1
0
 public JShot()
     : base(information.Clone(), new List <PassiveSkill>() { new ReadableScript() }, 2)
 {
     Accuracy = 0.5;
     Cost     = 2;
 }
Example #2
0
 public NoteDown() : base(information.Clone(), Enumerable.Empty <PassiveSkill>())
 {
 }
 public ReadableScript() : base(information.Clone(), Enumerable.Empty <PassiveSkill>())
 {
 }
 public CounterEvolution() : base(information.Clone(), Enumerable.Empty <PassiveSkill>())
 {
 }
Example #5
0
 public Overload() : base(information.Clone(), Enumerable.Empty <PassiveSkill>())
 {
 }
Example #6
0
 public C8()
     : base(information.Clone(), new List <PassiveSkill>() { new Overload() }, 4)
 {
     Accuracy = 0.9;
     Cost     = 4;
 }
Example #7
0
 public NormalAttack()
     : base(information.Clone(), Enumerable.Empty <PassiveSkill>(), 1.0)
 {
     Accuracy = 1.0;
 }
Example #8
0
 public FastCode() : base(information.Clone(), Enumerable.Empty <PassiveSkill>())
 {
 }
Example #9
0
 public CVar()
     : base(information.Clone(), new List <PassiveSkill>() { new NoteDown(), new CounterEvolution() }, 5)
 {
     Accuracy = 0.9;
     Cost     = 4;
 }
Example #10
0
 public Doctor() : base(information.Clone(), Enumerable.Empty <PassiveSkill>())
 {
 }
Example #11
0
 public Snake()
     : base(information.Clone(), new List <PassiveSkill>() { new FastCode(), new Pypi() }, 1)
 {
     Accuracy = 0.8;
     Cost     = 2;
 }
 public MachineLearning() : base(information.Clone(), Enumerable.Empty <PassiveSkill>())
 {
 }
Example #13
0
 public JavaGrab()
     : base(information.Clone(), new List <PassiveSkill>() { new Doctor(), new MachineLearning() }, 2)
 {
     Accuracy = 0.9;
     Cost     = 3;
 }