41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
#Import classes from cards
|
|
from scrython.cards import Autocomplete
|
|
from scrython.cards import Collector
|
|
from scrython.cards import Id
|
|
from scrython.cards import Mtgo
|
|
from scrython.cards import Multiverse
|
|
from scrython.cards import Named
|
|
from scrython.cards import Random
|
|
from scrython.cards import Search
|
|
|
|
#Import classes from rulings
|
|
from scrython.rulings import Mtgo
|
|
from scrython.rulings import Multiverse
|
|
from scrython.rulings import Id
|
|
from scrython.rulings import Code
|
|
|
|
#Import classes from sets
|
|
from scrython.sets import Code
|
|
from scrython.sets import Sets
|
|
|
|
#Import classes from catalogs
|
|
from scrython.catalog import ArtifactTypes
|
|
from scrython.catalog import CardNames
|
|
from scrython.catalog import CreatureTypes
|
|
from scrython.catalog import EnchantmentTypes
|
|
from scrython.catalog import LandTypes
|
|
from scrython.catalog import Loyalties
|
|
from scrython.catalog import PlaneswalkerTypes
|
|
from scrython.catalog import Powers
|
|
from scrython.catalog import SpellTypes
|
|
from scrython.catalog import Toughnesses
|
|
from scrython.catalog import Watermarks
|
|
from scrython.catalog import WordBank
|
|
from scrython.catalog import ArtistNames
|
|
|
|
#Import symbology
|
|
from scrython.symbology import ParseMana
|
|
from scrython.symbology import Symbology
|
|
|
|
#Import bulk-data
|
|
from scrython.bulk_data import BulkData |