fruitMachine.go 433 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package fruitMachine_e

const MaxFruitId = 8
const MaxFruitStakeCount = 6 // 最多可以下注多少种水果
const RoundTime = 5          // 多少分钟为一轮
const RecycleRate = 50       // 上一轮流转到下一次的比例(%)

const WatermelonFruitId = 8 // 西瓜ID

type FruitMachineStatus = uint8

const (
	StatusWaiting  = 1 // 等待下注中
	StatusChoosing = 2 // 计算中
	StatusShowing  = 3 // 显示结果中
)