Search results

  1. fukurou

    LG light cls list

    yes!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! it works! class Led{ private: byte pin; public: Led(){this->pin = 13;} Led(byte pin){ this->pin = pin; } void init(){ pinMode(pin, OUTPUT); } void on(){ digitalWrite(pin, HIGH); } void off(){ digitalWrite(pin, LOW); } }; class Skill {...
  2. fukurou

    [MEDIA]

  3. fukurou

    golem build

    @ZORO
  4. fukurou

    LG light cls list

    class Led{ private: byte pin; public: Led(){this->pin = 13;} Led(byte pin){ this->pin = pin; } void init(){ pinMode(pin, OUTPUT); } void on(){ digitalWrite(pin, HIGH); } void off(){ digitalWrite(pin, LOW); } }; class Skill { public: virtual void inOut() {...
  5. fukurou

    LG light cls list

    class Led{ private: byte pin; public: Led(){this->pin = 13;} Led(byte pin){ this->pin = pin; } void init(){ pinMode(pin, OUTPUT); } void on(){ digitalWrite(pin, HIGH); } void off(){ digitalWrite(pin, LOW); } }; class Skill { public: virtual void inOut() {...
  6. fukurou

    LG light cls list

    // C++ code // class List { public: byte length; byte data[16]; void append(byte item) { if (length < 16) data[length++] = item; } void remove(byte index) { if (index >= length) return; memmove(&data[index], &data[index+1], length - index - 1); length--; } }; List l { .length =...
  7. fukurou

    LG light cls list

    class Chobits: def __init__(self): super().__init__() self._dClasses: list[DiSkillV2] = [] # _ is a private access modifier def addSkill(self, skill: DiSkillV2) -> Chobits: # add a skill (builder design patterned func)) self._dClasses.append(skill)...
  8. fukurou

    LG light cls list

    class DiSkill: def __init__(self): pass # skill triggers and algorithmic logic def input(self, ear: str, skin: str, eye: str): pass
  9. fukurou

    LG light cls list

    1 DiSkill 2 Chobit 3 DiHelloWorld would be the lightest option
  10. fukurou

    golem build

    Gollum (Golem) (M) @ Liechi Berry Ability: Sturdy Shiny: Yes Tera Type: Normal EVs: 4 HP / 252 Atk / 252 Spe Jolly Nature - Earthquake - Rock Polish - Explosion - Stone Edge
  11. fukurou

    [MEDIA]

  12. fukurou

    [MEDIA]

  13. fukurou

    improved LG alg

    summoning kraken!
  14. fukurou

    golem build

    Ursaluna-Bloodmoon @ Aguav Berry Ability: Mind's Eye Tera Type: Normal EVs: 4 HP / 252 SpD / 252 Spe Timid Nature - Blood Moon - Earth Power - Moonblast - Calm Mind
  15. fukurou

    improved LG alg

    java ver updated, a few more touch ups needed
  16. fukurou

    improved LG alg

  17. fukurou

    golem build

    Sinistcha-Masterpiece @ Big Root Ability: Hospitality Shiny: Yes Tera Type: Grass EVs: 252 HP / 252 SpD IVs: 0 Atk - Matcha Gotcha - Nasty Plot - Shadow Ball - Stun Spore
  18. fukurou

    improved LG alg

    K I propagated the beef up. them numbers were missingno tier spooky but overall this is good
  19. fukurou

    [MEDIA]

  20. fukurou

    👨‍💻 dev get ready for a crazy assed coding party

    public class DiPetV3 extends DiSkillV2 { // chirp, learn replies and reply back occasionally. private int chirpsLim = 2; private TrgMinute trgMinute = new TrgMinute(0); private Responder1Word responder1 = new Responder1Word(); private DrawRndDigits allMinutes = new...
Top