Search results

  1. 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...
  2. 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)...
  3. 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] = []...
  4. 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))...
  5. fukurou

    golem build

    Golem-Alola (M) @ Choice Band Ability: Galvanize Tera Type: Normal EVs: 132 HP / 252 Atk / 124 SpD Adamant Nature - Stone Edge - Explosion - Gyro Ball - Thunder Punch
  6. fukurou

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

    set up cheat sheets!
  7. fukurou

    golem build

    @ZORO
  8. fukurou

    golem build

    Darkrai @ Chople Berry Ability: Bad Dreams Shiny: Yes Tera Type: Dark EVs: 252 HP / 4 Def / 252 Spe Timid Nature - Hypnosis - Dream Eater - Dark Pulse - Calm Mind
  9. fukurou

    golem build

    megumin (Golem) (F) @ Choice Band Ability: Sturdy Shiny: Yes Tera Type: Steel EVs: 252 HP / 252 Atk Adamant Nature - Earthquake - Explosion - Gyro Ball - Facade
  10. fukurou

    golem build

    Torkoal (M) @ Heat Rock Ability: Drought Tera Type: Steel EVs: 252 HP / 252 Atk Brave Nature IVs: 0 Spe - Gyro Ball - Yawn - Fissure - Stealth Rock
  11. fukurou

    golem build

    Ogerpon (F) @ Focus Sash Ability: Defiant Tera Type: Grass EVs: 4 HP / 252 Atk / 252 Spe Jolly Nature - Ivy Cudgel - Solar Blade - Swords Dance - Encore
  12. fukurou

    golem build

    @ZORO
  13. fukurou

    golem build

    gollum (Golem) (M) @ Assault Vest Ability: Rock Head Tera Type: Normal EVs: 4 HP / 252 Atk / 252 SpD Careful Nature - Earthquake - Explosion - Fire Punch - Double-Edge
  14. fukurou

    [MEDIA]

  15. fukurou

    👨‍💻 dev DiMisser

    class DiMisser(DiSkillV2): def __init__(self): self._pl: PlayGround = PlayGround() self._cron: Cron = Cron("15:00",50,2) self._responder: Responder = Responder("welcome", "i have missed you", "welcome back") super().__init__() # Override def...
  16. fukurou

    👨‍💻 dev DiMisser

    class DiMisser(DiSkillV2): def __init__(self): self._pl: PlayGround = PlayGround() self._cron: Cron = Cron("15:00",2,2) self._responder: Responder = Responder("welcome", "i have missed you", "welcome back") super().__init__() # Override def...
Top