Skip to content

Commit

Permalink
modify reward pack
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzn committed Nov 4, 2024
1 parent 7674e4c commit fcf860b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions src/constants/packs.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,19 @@ fn MODIFIER_CARDS_PACK() -> BlisterPack {
}

fn REWARD_PACK() -> BlisterPack {

BlisterPack {
id: REWARD_CARDS_PACK_ID,
cost: 0,
name: 'reward_cards_pack',
probability: 100,
size: 5,
cards: array![array![].span(), array![JOKER_CARD].span(), modifiers_ids_all().span()].span(),
probs: array![100, 20, 80].span(),
size: 8,
cards: array![
array![].span(),
common_cards_all().span(),
array![JOKER_CARD].span(),
modifiers_ids_all().span()
].span(),
probs: array![100, 75, 5, 20].span(),
}
}
2 changes: 1 addition & 1 deletion src/systems/game_system.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ mod game_system {
max_discard: 5,
max_jokers: 5,
player_score: 0,
level: 1,
level: 0,
len_hand: 8,
len_max_current_special_cards: 5,
len_current_special_cards: 0,
Expand Down

0 comments on commit fcf860b

Please sign in to comment.