mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 23:03:00 +00:00
17 lines
342 B
Python
17 lines
342 B
Python
from roman import toRoman
|
|
|
|
from .cards import Cards
|
|
|
|
|
|
class Opus(Cards):
|
|
def __init__(self, number):
|
|
if isinstance(number, int):
|
|
number = f"Opus {toRoman(number)}"
|
|
|
|
params = {
|
|
"text": "",
|
|
"element": ["fire"],
|
|
"set": [number],
|
|
}
|
|
|
|
Cards.__init__(self, params)
|