Search results

  1. 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)...
  2. 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
  3. fukurou

    LG light cls list

    1 DiSkill 2 Chobit 3 DiHelloWorld would be the lightest option
  4. 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
  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    improved LG alg

    summoning kraken!
  8. 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
  9. fukurou

    improved LG alg

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

    improved LG alg

  11. 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
  12. fukurou

    improved LG alg

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

    [MEDIA]

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

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

    class DiSneezer(DiSkillV2): # the skill simulates sneezing as a result of cold temperature def __init__(self, sneezes_per_hour: int): self._sneezesPerHour = 2 if 60 > sneezes_per_hour > 0: self._sneezesPerHour = sneezes_per_hour self._trgMinute...
  16. fukurou

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

    class DiBurper(DiSkillV2): def __init__(self, burps_per_hour: int): self._burpsPerHour = 2 if 60 > burps_per_hour > 0: self._burpsPerHour = burps_per_hour self._trgMinute: TrgMinute = TrgMinute() self._trgMinute.setMinute(0)...
  17. fukurou

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

    class DeepCopier: def copyList(self, original: list[str]) -> list[str]: deepCopy: list[str] = [] for item in original: deepCopy.append(item) return deepCopy def copyListOfInts(self, original: list[int]) -> list[int]: deepCopy: list[int] = []...
  18. fukurou

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

    class DrawRnd: # draw a random element, then take said element out def __init__(self, *values: str): self.converter: LGTypeConverter = LGTypeConverter() self.strings: LGFIFO = LGFIFO() self._stringsSource: list[str] = [] for i in range(0, len(values))...
Top