Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    AX beefup

    package AXJava; import LivinGrimoire.DeepCopier; import java.util.ArrayList; public class SpiderSense { // enables event prediction private Boolean spiderSense = false; private UniqueItemSizeLimitedPriorityQueue events = new UniqueItemSizeLimitedPriorityQueue(); private...
  3. fukurou

    AX beefup

    class SpiderSense { /// enables event prediction private var spiderSense:Bool = false var events:UniqueItemsPriorityQue = UniqueItemsPriorityQue() var alerts:UniqueItemsPriorityQue = UniqueItemsPriorityQue() var prev:String = "" init() { } /// event's predictions...
  4. fukurou

    AX beefup

    what if the goal is quite :s49:
  5. fukurou

    templeOS

    installation:
  6. fukurou

    AX beefup

  7. fukurou

    [MEDIA]

  8. fukurou

    AX beefup

    the count down gate is the tolerance gate :s15:
  9. 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...
  10. fukurou

    AX beefup

    summoning kraken! :s77:
  11. 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)...
  12. 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()...
  13. 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) {...
  14. 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...
  15. fukurou

    [MEDIA]

  16. fukurou

    hadouken!

    hadouken!
  17. fukurou

    new sylveon

    @ZORO ^
  18. 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
  19. 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
  20. 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;} }
Top