Search results

  1. fukurou

    hadouken!

    hadouken!
  2. fukurou

    new sylveon

    @ZORO ^
  3. fukurou

    new sylveon

    luna (Zoroark-Hisui) (F) @ Focus Sash Ability: Illusion Shiny: Yes Tera Type: Dark EVs: 4 HP / 252 SpA / 252 Spe Timid Nature - Shadow Ball - Hyper Voice - Flamethrower - Nasty Plot @ZORO
  4. fukurou

    new sylveon

    luna (Zoroark-Hisui) (F) @ Focus Sash Ability: Illusion Tera Type: Ground EVs: 4 HP / 252 SpA / 252 Spe Timid Nature - Shadow Ball - Hyper Voice - Flamethrower - Nasty Plot @ZORO
  5. fukurou

    AX beefup

    package AXJava; public class TrGEV3 { // advanced boolean gates with internal logic // these ease connecting common logic patterns, as triggers public void reset(){} public void input(String ear, String skin, String eye) { } public Boolean trigger(){return false;} }
  6. fukurou

    [MEDIA]

  7. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.LGFIFO; import LivinGrimoire.RegexUtil; public class ForcedLearn { // remembers key inputs because they start with keyword // also can dispense key inputs public String keyword = "say"; private LGFIFO<String> p1 = new LGFIFO<String>()...
  8. fukurou

    AX beefup

    package AXJava; public class EmoDetectorHappy extends Responder{ public EmoDetectorHappy() { super("good","awesome","great","wonderful","sweet","happy"); } public Boolean isHappy(String str){ return super.strContainsResponse(str); } }
  9. fukurou

    new sylveon

    Pelipper (M) @ Damp Rock Ability: Drizzle Shiny: Yes Tera Type: Water EVs: 252 HP / 252 SpA / 4 SpD Quiet Nature - Chilling Water - Hydro Pump - Tailwind - Knock Off @ZORO
  10. fukurou

    new sylveon

    Palafin @ Sitrus Berry Ability: Zero to Hero Tera Type: Water EVs: 252 HP / 4 Atk / 252 Spe Jolly Nature - Wave Crash - Drain Punch - Bulk Up - Waterfall @ZORO
  11. fukurou

    new sylveon

    Koraidon @ Heat Rock Ability: Orichalcum Pulse Tera Type: Fire EVs: 4 HP / 252 Atk / 252 Spe Adamant Nature - Collision Course - Flare Blitz - U-turn - Outrage @ZORO
  12. fukurou

    new sylveon

    Miraidon @ Terrain Extender Ability: Hadron Engine Tera Type: Electric EVs: 252 SpA / 252 Spe Timid Nature - Charge - Draco Meteor - Electro Drift - Parabolic Charge @ZORO
  13. fukurou

    AX beefup

  14. 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...
  15. fukurou

    AX beefup

  16. 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
  17. 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
  18. 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...
  19. fukurou

    AX beefup

  20. 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...
Top