Git Product home page Git Product logo

Comments (2)

sirmammingtonham avatar sirmammingtonham commented on May 18, 2024

I used the standard CardDefs.xml, but I only trained with the core/basic card set. There's a function in gameUtils.py that allows you to exclude all cards in training except for a specified set

def isolateSet(self, filename='notbasicset', set='CardSet.CORE'):
# isolates the specified card set for exclusion in drafting
cards.db.initialize()
extraset = []
for index, card in cards.db.items():
if str(card.card_set) != set:
extraset.append(card.id)
with open(f'{filename}.data', 'wb') as filehandle:
# store the data as binary data stream
pickle.dump(extraset, filehandle)

so the non-implemented cards are ignored. This will be called if is_basic=True.
Hopefully fireplace is still being worked on so more cards can be implemented soon.

from alphastone.

1576012404 avatar 1576012404 commented on May 18, 2024

i run the code with default parameters,so it use the notbasicset files of yours. i can also finds some cards whose effects are not implemented.

from alphastone.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.