small changes uwu

pull/207/head
transbitch 2023-09-18 22:27:27 -04:00
parent 33163d2e5e
commit 897ee3e1cd
1 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@ class Modified:
# Using this instead of throwing everything in a string and then parsing it helps # Using this instead of throwing everything in a string and then parsing it helps
# mitigate the risk of XSS attacks # mitigate the risk of XSS attacks
def image_href(self, name: str): def image(self, name: str):
image = self.soup.new_tag( image = self.soup.new_tag(
'img', 'img',
loading='lazy', loading='lazy',
@ -139,12 +139,12 @@ class Modified:
def enraged(self): def enraged(self):
self.underlay(self.soup.new_tag( self.underlay(self.soup.new_tag(
'div', 'div',
attrs={'class': 'marseyfx-enraged-underlay'} attrs={'class': 'marseyfx-modifier-enraged-underlay'}
)) ))
@heavy @heavy
@modifier @modifier
def corrupted(self): def highcontrast(self):
pass pass
@heavy @heavy
@ -176,7 +176,7 @@ class Modified:
@modifier @modifier
def spin(self, speed: NumberLiteralToken): def spin(self, speed: NumberLiteralToken):
self.add_style('--marseyfx-spin-speed: ' + speed.value + ';') self.add_style('--marseyfx-spin-peroid-multiplier: ' + (1/speed.value) + ';')
@modifier @modifier
def triumphs(self, other: GroupToken): def triumphs(self, other: GroupToken):