Skip to content

Instantly share code, notes, and snippets.

View AvailableAmphibian's full-sized avatar
🥰

Dra AvailableAmphibian

🥰
  • 23:04 (UTC -12:00)
View GitHub Profile
from copy import deepcopy
__X = 0 # Empty space
__W = -1 # Direction of White
__B = 1 # Direction of Black
line_no = int(input())
pawn_no = int(input())
board = []
class Rectangle:
def __init__(self, l, h):
self.bot = 0
self.top = h
self.left = 0
self.right = l
def get_area(self):
x_axis = self.right - self.left
y_axis = self.top - self.bot
@AvailableAmphibian
AvailableAmphibian / speed_calc.py
Last active April 8, 2022 18:01
SummonersWar : Calculator of the speed needed for a Jamire Lushen LightHomunculus setup to work based on jamire's bonus speed
# === Constants ===
# Final multiplier
SPD_BUFF = 1.3
# Base Multipliers
TOTEM = 0.15
LEAD = 0.24
# Base speed
LUSHEN_BASE_SPD = 103 # Base monster used
HOMUNL_BASE_SPD = 101