Search results

  1. fukurou

    AX beefup

  2. fukurou

    AX beefup

    package AXJava; import java.util.ArrayList; import java.util.Random; public class Responder { // simple random response dispenser private ArrayList<String> responses = new ArrayList<String>(); private Random rand = new Random(); public Responder(String... replies) { for...
  3. fukurou

    AX beefup

  4. fukurou

    new sylveon

    Iron Leaves @ Lum Berry Ability: Quark Drive Tera Type: Psychic EVs: 96 HP / 160 Atk / 252 Spe Jolly Nature - Sacred Sword - Psyblade - Swords Dance - Leaf Blade @ZORO
  5. fukurou

    new sylveon

    yotamarker.com (Pincurchin) @ Terrain Extender Ability: Electric Surge Tera Type: Electric EVs: 4 HP / 252 Def / 252 SpD - Memento - Spikes - Zing Zap - Toxic Spikes @ZORO
  6. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.Algorithm; import LivinGrimoire.DiSkillV2; import LivinGrimoire.Neuron; import java.util.ArrayList; import java.util.Random; public class SkillHubAlgDispenser { // super class to output an algorithm out of a selection of skills // engage the hub...
  7. fukurou

    AX beefup

  8. fukurou

    AX beefup

    class SkillHubAlgDispenser { /// super class to output an algorithm out of a selection of skills /// engage the hub with dispenseAlg and return the value to outAlg attribute /// of the containing skill (which houses the skill hub) /// this module enables using a selection of 1...
  9. fukurou

    new sylveon

    yotamarker.com (Walking Wake) @ Throat Spray Ability: Protosynthesis Tera Type: Water EVs: 14 HP / 242 SpA / 252 Spe Timid Nature IVs: 0 Atk - Hydro Steam - Flamethrower - Dragon Pulse - Snarl @ZORO
  10. fukurou

    new sylveon

    Torkoal @ Heat Rock Ability: Drought Shiny: Yes Tera Type: Fire EVs: 252 HP / 252 Atk / 4 SpD Brave Nature - Yawn - Protect - Rapid Spin - Smokescreen @ZORO
  11. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.Algorithm; import java.util.ArrayList; import java.util.Random; // (*)Algorithm Dispensers public class AlgDispenser { // super class to output an algorithm out of a selection of algorithms private ArrayList<Algorithm> algs = new...
  12. fukurou

    new sylveon

    Chi-Yu @ Wide Lens Ability: Beads of Ruin Tera Type: Water EVs: 4 HP / 252 SpA / 252 Spe Modest Nature IVs: 0 Atk - Tera Blast - Fire Blast - Ruination - Nasty Plot
  13. fukurou

    AX beefup

    package AXJava; import java.util.ArrayList; import java.util.Random; public class DrawRnd { // draw a random element than take said element out private ArrayList<String> strings = new ArrayList<>(); private Random rand = new Random(); public DrawRnd(String... values) {...
  14. fukurou

    AX beefup

  15. fukurou

    new sylveon

    Sylveon (F) @ Heavy-Duty Boots Ability: Pixilate Shiny: Yes Tera Type: Psychic EVs: 4 HP / 252 SpA / 4 SpD / 248 Spe Timid Nature IVs: 0 Atk - Psych Up - Hyper Beam - Psychic - Draining Kiss
  16. fukurou

    new sylveon

    Scizor (M) @ Metronome Ability: Swarm Shiny: Yes Tera Type: Water EVs: 252 Atk / 4 SpD / 252 Spe Jolly Nature - Fury Cutter - Agility - Defog - Tailwind @ZORO
  17. fukurou

    new sylveon

    Dachsbun @ Leftovers OT: Ability: Well-Baked Body Tera Type: Fairy EVs: 252 HP / 252 Def / 4 SpD Impish Nature IVs: 0 Atk - Protect - Body Press - Roar - Wish @ZORO
  18. fukurou

    new sylveon

    Sylveon (F) @ Leftovers OT: Ability: Cute Charm Shiny: Yes Tera Type: Psychic EVs: 4 HP / 252 SpA / 4 SpD / 248 Spe Timid Nature - Moonblast - Psychic - Yawn - Protect @ZORO
  19. fukurou

    AX beefup

    package AXJava; public class Cycler { // cycles through numbers limit to 0 non-stop private int cycler = 0; private int limit; public Cycler(int limit) { super(); this.limit = limit; cycler = limit; } public int getLimit() { return...
Top