diff --git a/src/main/kotlin/dnd11th/blooming/api/service/guide/provider/StaticPlantSimpleMessageProvider.kt b/src/main/kotlin/dnd11th/blooming/api/service/guide/provider/StaticPlantSimpleMessageProvider.kt index 57712416..9ba5fec5 100644 --- a/src/main/kotlin/dnd11th/blooming/api/service/guide/provider/StaticPlantSimpleMessageProvider.kt +++ b/src/main/kotlin/dnd11th/blooming/api/service/guide/provider/StaticPlantSimpleMessageProvider.kt @@ -137,8 +137,10 @@ class StaticPlantSimpleMessageProvider { private fun makeSimpleFertilizerDescription(plant: Plant): String { return when (plant.fertilizer) { - Fertilizer.DEMAND -> "봄, 여름에 2~4주 간격으로 주기" + Fertilizer.NOT_DEMAND -> "비료를 주지 않아도 괜찮습니다." Fertilizer.LOW_DEMAND -> "봄, 여름에 4~8주 간격으로 주기" + Fertilizer.DEMAND -> "봄, 여름에 2~4주 간격으로 주기" + Fertilizer.HIGH_DEMAND -> "봄, 여름에 2~3주 간격으로 주기" } } } diff --git a/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Difficulty.kt b/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Difficulty.kt index b29e2253..abb637b5 100644 --- a/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Difficulty.kt +++ b/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Difficulty.kt @@ -16,4 +16,8 @@ enum class Difficulty( "고수식집사", "필요함", ), + VERY_HIGH( + "고수식집사", + "특별 관리 요구", + ), } diff --git a/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Fertilizer.kt b/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Fertilizer.kt index 03a58281..daf269d7 100644 --- a/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Fertilizer.kt +++ b/src/main/kotlin/dnd11th/blooming/domain/entity/plant/Fertilizer.kt @@ -4,6 +4,10 @@ enum class Fertilizer( val periodWeek: Int, val apiName: String, ) { + NOT_DEMAND( + 12, + "비료를 요구하지 않음", + ), LOW_DEMAND( 8, "비료를 거의 요구하지 않음", @@ -12,4 +16,8 @@ enum class Fertilizer( 4, "비료를 보통 요구함", ), + HIGH_DEMAND( + 4, + "비료를 많이 요구함", + ), } diff --git a/src/main/kotlin/dnd11th/blooming/domain/entity/plant/GrowTemperature.kt b/src/main/kotlin/dnd11th/blooming/domain/entity/plant/GrowTemperature.kt index 5c847a45..88a0f451 100644 --- a/src/main/kotlin/dnd11th/blooming/domain/entity/plant/GrowTemperature.kt +++ b/src/main/kotlin/dnd11th/blooming/domain/entity/plant/GrowTemperature.kt @@ -4,6 +4,10 @@ enum class GrowTemperature( val lowTemperature: Int, val highTemperature: Int, ) { + GROW_TEMPERATURE_10_25( + 10, + 15, + ), GROW_TEMPERATURE_16_20( 16, 20,