Comments
knockoffmania
Game Developed for #colotterygamejam using Godot engine (https://godotengine.org/). It is a Betting Monitor Game, where players put bets on the outcome of game, and plays by itself.
In This game there are 20 cars in an arena, each car tries to hit and eliminate other cars. The final 3 cars are on podium in the order of there elimination, the last car is on the first place on podium, the last car eliminate is on the second place of podium, and the second last car to be eliminated is on the third place of the podium
Players put bets by picking 3 cars they think will be end on the podium, in order to win at least one of the car in the bet must be on the podium higher number of car on podium higher the payout, if the order of the podium is right player gets a even higher payout.
source code: (https://github.com/jawadhoot/knockoffmania)
Payout:
ALL_ON_PODIUM_IN_ORDER pays 100:
all 3 of the cars in the bet are on podium and the podium is in order of the pick, eg : your bet is (A,B,C) and podium is (A,B,C)
ALL_ON_PODIUM pays 20:
all 3 of the cars in the bet are on podium, eg : your bet is (A,C,B) and podium is (A,B,C)
TOP_2_ON_SPOT pays 10:
2 of the cars in the bet are on podium and are 1,2 in the order, eg : your bet is (A,B,D) and podium is (A,B,C) Note : your bet is (D,A,B) and podium is (A,B,C) does not qualify for this
PICKED_TOP_2 pays 5:
2 of the cars in the bet are on podium and are in Top 2 position, eg : your bet is (B,A,D) and podium is (A,B,C)
2_ON_PODIUM pays 3:
2 of the cars in the bet are on podium, eg : your bet is (D,A,B) and podium is (A,B,C)
PICKED_THE_WINNER pays 2:
1 of the car in the bet is on podium and is in first place, eg : your bet is (D,E,A) and podium is (A,B,C)
1_ON_PODIUM pays 1:
1 of the car in the bet is on podium, eg : your bet is (D,E,B) and podium is (A,B,C)
SORRY pays 0:
None of the car in the bet are on podium, eg : your bet is (D,E,F) and podium is (A,B,C)
Simulated Probabilities
| Name | percent | payout | payout_percent |
|------------------------|---------|-------------------------|
| ALL_ON_PODIUM_IN_ORDER | 0.02 | 100 | 1.9 |
| ALL_ON_PODIUM | 0.07 | 20 | 1.42 |
| TOP_2_ON_SPOT | 0.25 | 10 | 2.5 |
| PICKED_TOP_2 | 1.24 | 5 | 6.21 |
| 2_ON_PODIUM | 2.99 | 3 | 8.96 |
| PICKED_THE_WINNER | 11.92 | 2 | 23.85 |
| 1_ON_PODIUM | 23.86 | 1 | 23.86 |
| SORRY | 59.65 | 0 | 0 |