feat: implement api route for slots (CAS-4 CAS-58) #140

Merged
ptran merged 5 commits from feature-slots into main 2025-04-24 10:16:19 +00:00
Showing only changes of commit 29732e63b9 - Show all commits

View file

@ -14,11 +14,12 @@ import java.util.Random;
public class SlotService {
private final int REEL_LENGTH = 32;
// 98% RTP
private final int SEVEN_COUNT = 1;
private final int BAR_COUNT = 4;
private final int BELL_COUNT = 7;
private final int CHERRY_COUNT = 11;
private final int BLANK_COUNT = 9;
private final int CHERRY_COUNT = 10;
private final int BLANK_COUNT = 10;
private final Symbol SEVEN = new Symbol("seven", new BigDecimal("1000"));
private final Symbol BAR = new Symbol("bar", new BigDecimal("85"));