Skip to content

Instantly share code, notes, and snippets.

from itertools import product
from typing import List, Tuple
class TitanStat:
DAMAGE_BOOST = [1.0, 1.02, 1.0312, 1.0408, 1.0504, 1.06, 1.0696]
DISCHARGE_BOOST = [1.0, 1.14286, 1.22286, 1.29143, 1.3416, 1.3725, 1.3916]
NORMAL_BOOST = [1.0, 1.08333, 1.13, 1.17, 1.2099, 1.2441, 1.2653]
SKILL_BOOST = [1.0, 1.07692, 1.12, 1.15692, 1.1938, 1.2289, 1.2519]
WEAKPOINT_BOOST = [1.0, 1.05, 1.078, 1.102, 1.126, 1.15, 1.174]