Search results

  1. fukurou

    AX beefup

    the count down gate is the tolerance gate :s15:
  2. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.LGFIFO; public class UniqueItemsPriorityQue extends LGFIFO<String>{ // a priority queue without repeating elements @Override public void add(String item) { if(!super.contains(item)){ super.add(item);} } } package AXJava...
  3. fukurou

    AX beefup

    summoning kraken! :s77:
  4. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.PlayGround; public class TrgParrot { // simulates a parrot chirp trigger mechanism // as such this trigger is off at night // in essence this trigger says: I am here, are you here? good. private TrgTolerance tolerance = new TrgTolerance(5)...
  5. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.PlayGround; import java.util.Random; public class TrgMinute extends TrGEV3{ // trigger true at minute once per hour private int hour1 = -1; int minute; private Random rand = new Random(); private PlayGround pl = new PlayGround()...
  6. fukurou

    AX beefup

    package AXJava; import java.util.Random; public class TrgTolerance extends TrGEV3{ // this boolean gate will return true till depletion or reset() private int repeats = 0; private int maxrepeats = 2; private Random rand = new Random(); public TrgTolerance(int maxrepeats) {...
  7. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.DiSkillV2; import java.util.ArrayList; public class EV3DaisyChainAndMode extends TrGEV3{ // this class connects several logic gates triggers together private ArrayList<TrGEV3> trgGates = new ArrayList<TrGEV3>(); public...
  8. fukurou

    [MEDIA]

  9. fukurou

    hadouken!

    hadouken!
  10. fukurou

    new sylveon

    @ZORO ^
  11. 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
  12. 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
  13. 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;} }
  14. fukurou

    [MEDIA]

  15. 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>()...
  16. 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); } }
  17. 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
  18. 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
  19. 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
  20. 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
Top