From 7eb7aa4acfb1d4077db719b5ad7e8e5674a4a4ff Mon Sep 17 00:00:00 2001 From: devxb Date: Sat, 16 Nov 2024 21:26:45 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=BD=91=EA=B8=B0=EB=A1=9C=20=ED=96=84?= =?UTF-8?q?=EC=8A=A4=ED=84=B0=EB=93=A4=EC=9D=B4=20=EB=82=98=EC=98=AC=20?= =?UTF-8?q?=EC=88=98=20=EC=9E=88=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/org/gitanimals/gotcha/domain/GotchaType.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/kotlin/org/gitanimals/gotcha/domain/GotchaType.kt b/src/main/kotlin/org/gitanimals/gotcha/domain/GotchaType.kt index 9dfa729..898e297 100644 --- a/src/main/kotlin/org/gitanimals/gotcha/domain/GotchaType.kt +++ b/src/main/kotlin/org/gitanimals/gotcha/domain/GotchaType.kt @@ -96,6 +96,11 @@ enum class GotchaType( Capsule.of("SCREAM_GHOST", 0.001), Capsule.of("SLIME_PUMPKIN_1", 0.08), Capsule.of("SLIME_PUMPKIN_2", 0.08), + Capsule.of("HAMSTER", 0.8), + Capsule.of("HAMSTER_SPRING", 0.01), + Capsule.of("HAMSTER_JAVA", 0.01), + Capsule.of("HAMSTER_KOTLIN", 0.01), + Capsule.of("HAMSTER_JS", 0.01), ) } }