Skip to content

Instantly share code, notes, and snippets.

View scheibo's full-sized avatar

Kirk Scheibelhut scheibo

View GitHub Profile
@scheibo
scheibo / main.py
Created August 8, 2024 16:39 — forked from baskuit/main.py
Python script to solve Tauros v. Tauros
from fractions import Fraction
value_table = {}
move_table = {}
max_hp = 353
# Body Slam min damage
low_hp = 95
attacks = ["bslam", "blizzard", "hyperbeam"]
crit = {0: Fraction(402, 512), 1: Fraction(110, 512)}