Okay, in basis this is how the card system is going to work. The cards
are each numbered from 1 up in packs independently. The chances of a
certain rarity appearing are as follows.
1 Rare+:
Of these the chances are the following:
Rare 50%
Super Rare 30%
Ultra Rare 15%
Secret Rare 5%
(Ultimate Rares are treated as Ultra Rares)
The pack will roll a 1-100 random number. That number corresponds to a certain group of cards. From then, it rerolls a 1-XX (total number of that rarity in pack) random number which decides the particular card that you get.
8 Commons:
These are chosen randomly from the common cards in the pack.
The Formula being used is the following:
Let X = total common cards in pack;
Let Y = total cards to be chosen
card chosen = ((X! / Y!) * (rnd# (1 to X/Y)) - 10 / 2) * rnd# (1 to Y)
((STILL NEED TO SEE IF THIS FORMULA WORKS HOW I WANT IT))