1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/utils/cast.py

231 lines
9.1 KiB
Python
Raw Normal View History

import random
import math
2019-02-15 18:42:02 +00:00
import typing
import strings
2019-02-17 22:59:04 +00:00
import enum
2019-02-15 18:42:02 +00:00
s = strings.safely_format_string
2019-02-17 22:59:04 +00:00
class SpellType(enum.Flag):
DAMAGING = enum.auto()
HEALING = enum.auto()
STATS = enum.auto()
2019-02-18 23:28:13 +00:00
STATUS_EFFECT = enum.auto()
2019-02-15 18:42:02 +00:00
2019-02-17 22:59:04 +00:00
class DamageComponent:
2019-02-17 21:22:09 +00:00
dice_type_distribution = ([4] * 7) +\
([6] * 12) +\
([8] * 32) +\
([10] * 30) +\
([12] * 12) +\
2019-02-15 18:42:02 +00:00
([20] * 6) +\
([100] * 1)
all_damage_types = ["da fuoco", "da freddo", "elettrici", "sonici", "necrotici", "magici",
"da acido", "divini", "nucleari", "psichici", "fisici", "puri", "da taglio",
"da perforazione", "da impatto", "da caduta", "gelato", "onnipotenti", "oscuri",
2019-02-17 21:22:09 +00:00
"di luce", "da velocità", "da cactus", "dannosi", "da radiazione",
2019-02-15 18:42:02 +00:00
"tuamammici", "da maledizione", "pesanti", "leggeri", "immaginari", "da laser",
"da neutrini", "galattici", "cerebrali", "ritardati", "ritardanti", "morali", "materiali",
2019-02-17 21:22:09 +00:00
"energetici", "esplosivi", "energetici", "finanziari", "radianti", "sonori", "spaggiaritici",
"interiori", "endocrini", "invisibili", "inesistenti", "eccellenti", "bosonici",
"gellificanti", "terminali"]
2019-02-15 18:42:02 +00:00
repeat_distribution = ([1] * 8) +\
([2] * 1) +\
([3] * 1)
damage_types_distribution = ([1] * 6) + \
([2] * 3) + \
([3] * 1)
2019-02-17 22:59:04 +00:00
def __init__(self):
# ENSURE THE SEED IS ALREADY SET WHEN CREATING THIS COMPONENT!!!
2019-02-15 18:42:02 +00:00
self.dice_number = random.randrange(1, 21)
self.dice_type = random.sample(self.dice_type_distribution, 1)[0]
self.constant = random.randrange(math.floor(-self.dice_type / 4), math.ceil(self.dice_type / 4) + 1)
2019-02-17 21:22:09 +00:00
self.miss_chance = random.randrange(50, 101)
2019-02-15 18:42:02 +00:00
self.repeat = random.sample(self.repeat_distribution, 1)[0]
self.damage_types_qty = random.sample(self.damage_types_distribution, 1)[0]
self.damage_types = random.sample(self.all_damage_types, self.damage_types_qty)
2019-02-18 23:29:20 +00:00
@property
def avg(self):
2019-02-23 10:13:36 +00:00
return (self.dice_number * (self.dice_type + 1) / 2) + self.constant
2019-02-18 23:29:20 +00:00
2019-02-15 18:42:02 +00:00
def stringify(self) -> str:
2019-02-17 22:59:04 +00:00
string = ""
2019-02-15 18:42:02 +00:00
if self.constant > 0:
constant = "+" + str(self.constant)
elif self.constant == 0:
constant = ""
else:
2019-02-15 18:42:02 +00:00
constant = str(self.constant)
string += s(strings.SPELL.DAMAGE,
words={"number": str(self.dice_number),
"type": str(self.dice_type),
2019-02-18 23:28:13 +00:00
"constant": constant,
2019-02-18 23:30:57 +00:00
"avg": str(int(self.avg))})
2019-02-15 18:42:02 +00:00
for dmg_type in self.damage_types:
string += s(strings.SPELL.TYPE, words={"type": dmg_type})
2019-02-17 22:59:04 +00:00
string += s(strings.SPELL.ACCURACY, words={"accuracy": str(self.miss_chance)})
2019-02-15 18:42:02 +00:00
if self.repeat > 1:
string += s(strings.SPELL.REPEAT, words={"repeat": str(self.repeat)})
2019-02-17 23:04:27 +00:00
return string
2019-02-17 22:59:04 +00:00
class HealingComponent:
dice_type_distribution = ([4] * 12) +\
([6] * 38) +\
([8] * 30) +\
([10] * 12) +\
([12] * 6) +\
([20] * 1) +\
([100] * 1)
def __init__(self):
# ENSURE THE SEED IS ALREADY SET WHEN CREATING THIS COMPONENT!!!
2019-02-18 22:17:00 +00:00
self.dice_number = random.randrange(1, 11)
2019-02-17 22:59:04 +00:00
self.dice_type = random.sample(self.dice_type_distribution, 1)[0]
self.constant = random.randrange(math.floor(-self.dice_type / 4), math.ceil(self.dice_type / 4) + 1)
2019-02-18 23:28:13 +00:00
@property
def avg(self):
2019-02-23 10:13:36 +00:00
return (self.dice_number * (self.dice_type + 1) / 2) + self.constant
2019-02-18 23:28:13 +00:00
2019-02-17 22:59:04 +00:00
def stringify(self) -> str:
string = ""
if self.constant > 0:
constant = "+" + str(self.constant)
elif self.constant == 0:
constant = ""
else:
constant = str(self.constant)
string += s(strings.SPELL.HEALING,
words={"number": str(self.dice_number),
"type": str(self.dice_type),
2019-02-18 23:28:13 +00:00
"constant": constant,
2019-02-18 23:30:57 +00:00
"avg": str(int(self.avg))})
2019-02-17 22:59:04 +00:00
return string
class StatsComponent:
all_stats = ["Attacco", "Difesa", "Velocità", "Elusione", "Tenacia", "Rubavita",
"Vampirismo", "Forza", "Destrezza", "Costituzione", "Intelligenza",
"Saggezza", "Carisma", "Attacco Speciale", "Difesa Speciale",
"Eccellenza", "Immaginazione", "Cromosomi", "Timidezza", "Sonno",
"Elasticità", "Peso", "Sanità", "Appetito", "Fortuna", "Percezione",
"Determinazione"]
change_distribution = (["--"] * 1) +\
2019-02-18 22:18:16 +00:00
(["-"] * 2) +\
(["+"] * 2) +\
2019-02-17 22:59:04 +00:00
(["++"] * 1)
2019-02-18 22:18:16 +00:00
multistat_distribution = ([1] * 16) +\
([2] * 8) +\
2019-02-17 22:59:04 +00:00
([3] * 4) +\
([5] * 2) +\
([8] * 1)
def __init__(self):
# ENSURE THE SEED IS ALREADY SET WHEN CREATING THIS COMPONENT!!!
self.stat_changes = {}
self.stat_number = random.sample(self.multistat_distribution, 1)[0]
available_stats = self.all_stats.copy()
for _ in range(self.stat_number):
stat = random.sample(available_stats, 1)[0]
available_stats.remove(stat)
change = random.sample(self.change_distribution, 1)[0]
self.stat_changes[stat] = change
def stringify(self) -> str:
string = ""
for name in self.stat_changes:
string += s(strings.SPELL.STAT, words={
2019-02-17 23:06:47 +00:00
"name": name,
"change": self.stat_changes[name]
2019-02-17 22:59:04 +00:00
})
return string
2019-02-18 23:28:13 +00:00
class StatusEffectComponent:
all_status_effects = ["Bruciatura", "Sanguinamento", "Paralisi", "Veleno",
"Congelamento", "Iperveleno", "Sonno", "Stordimento",
"Rallentamento", "Radicamento", "Rigenerazione", "Morte",
"Affaticamento", "Glitch", "Accecamento", "Silenzio",
"Esilio", "Invisibilità", "Rapidità", "Splendore"]
def __init__(self):
# ENSURE THE SEED IS ALREADY SET WHEN CREATING THIS COMPONENT!!!
self.chance = random.randrange(1, 101)
self.effect = random.sample(self.all_status_effects, 1)[0]
def stringify(self) -> str:
return s(strings.SPELL.STATUS_EFFECT, words={
"chance": str(self.chance),
"effect": self.effect
})
2019-02-17 22:59:04 +00:00
class Spell:
2019-02-18 22:17:00 +00:00
version = "3.2"
2019-02-17 22:59:04 +00:00
2019-02-18 23:28:13 +00:00
damaging_spell_chance = 0.9
healing_spell_chance = 0.9 # If not a damaging spell
additional_stats_chance = 0.1 # In addition to the damage/healing
additional_status_effect_chance = 0.1 # In addition to the rest
2019-02-17 22:59:04 +00:00
def __init__(self, name: str):
seed = name.capitalize()
random.seed(seed)
# Spell name
self.name = seed
# Find the spell type
2019-02-17 23:14:31 +00:00
self.spell_type = SpellType(0)
2019-02-17 22:59:04 +00:00
if random.random() < self.damaging_spell_chance:
2019-02-17 23:14:31 +00:00
self.spell_type |= SpellType.DAMAGING
2019-02-17 22:59:04 +00:00
elif random.random() < self.healing_spell_chance:
2019-02-17 23:14:31 +00:00
self.spell_type |= SpellType.HEALING
2019-02-17 22:59:04 +00:00
if random.random() < self.additional_stats_chance:
2019-02-17 23:14:31 +00:00
self.spell_type |= SpellType.STATS
2019-02-18 23:28:13 +00:00
if random.random() < self.additional_status_effect_chance:
self.spell_type |= SpellType.STATUS_EFFECT
2019-02-17 22:59:04 +00:00
# Damaging spells
if self.spell_type & SpellType.DAMAGING:
self.damage_component = DamageComponent()
else:
self.damage_component = None
# Healing spells
if self.spell_type & SpellType.HEALING:
self.healing_component = HealingComponent()
else:
self.healing_component = None
2019-02-18 23:28:13 +00:00
# Stats spells
2019-02-17 22:59:04 +00:00
if self.spell_type & SpellType.STATS:
self.stats_component = StatsComponent()
else:
self.stats_component = None
2019-02-18 23:28:13 +00:00
# Status effect spells
if self.spell_type & SpellType.STATUS_EFFECT:
self.status_effect_component = StatusEffectComponent()
else:
self.status_effect_component = None
2019-02-17 22:59:04 +00:00
def stringify(self) -> str:
string = s(strings.SPELL.HEADER, words={"name": self.name, "version": self.version})
if self.spell_type & SpellType.DAMAGING:
string += self.damage_component.stringify()
if self.spell_type & SpellType.HEALING:
string += self.healing_component.stringify()
if self.spell_type & SpellType.STATS:
string += self.stats_component.stringify()
2019-02-18 23:28:13 +00:00
if self.spell_type & SpellType.STATUS_EFFECT:
string += self.status_effect_component.stringify()
2019-02-17 23:16:38 +00:00
if self.spell_type == SpellType(0):
2019-02-17 22:59:04 +00:00
string += s(strings.SPELL.NOTHING)
2019-02-15 18:42:02 +00:00
return string