Ejemplo n.º 1
0
def new(gen):
    """Create a new PKM file.

    Keyword arguments:
    gen (int) -- the file's game generation
    """
    return get_pkmobj(gen, '\x00' * 136)
Ejemplo n.º 2
0
def new(gen):
    """Create a new PKM file.

    Keyword arguments:
    gen (int) -- the file's game generation
    """
    return get_pkmobj(gen, '\x00' * 136)
Ejemplo n.º 3
0
def load(gen, data):
    """Load PKM data.

    Keyword arguments:
    gen (int) -- the file's game generation
    data (str) -- the file's binary data
    """
    return get_pkmobj(gen, data)
Ejemplo n.º 4
0
def load(gen, data):
    """Load PKM data.

    Keyword arguments:
    gen (int) -- the file's game generation
    data (str) -- the file's binary data
    """
    return get_pkmobj(gen, data)