telebot: add bowling dice

This commit is contained in:
Paul Lesur 2020-12-10 12:32:33 +01:00
parent 828d0f4030
commit 4b59c7f738

View File

@ -216,9 +216,10 @@ const (
type DiceType string
var (
Cube = &Dice{Type: "🎲"}
Dart = &Dice{Type: "🎯"}
Ball = &Dice{Type: "🏀"}
Goal = &Dice{Type: "⚽"}
Slot = &Dice{Type: "🎰"}
Cube = &Dice{Type: "🎲"}
Dart = &Dice{Type: "🎯"}
Ball = &Dice{Type: "🏀"}
Goal = &Dice{Type: "⚽"}
Slot = &Dice{Type: "🎰"}
Bowling = &Dice{Type: "🎳"}
)