mirror of https://github.com/hykilpikonna/AquaDX
[O] Split
parent
1bdb17f073
commit
ea70da8fbf
|
@ -0,0 +1,39 @@
|
||||||
|
package icu.samnyan.aqua.sega.chusan
|
||||||
|
|
||||||
|
|
||||||
|
object ChusanData {
|
||||||
|
val mapAreaCondition = mapOf(
|
||||||
|
"gameMapAreaConditionList" to listOf(
|
||||||
|
mapOf("mapAreaId" to 2206201, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 3, "conditionId" to 6832, "logicalOpe" to 1)
|
||||||
|
)),
|
||||||
|
mapOf("mapAreaId" to 2206203, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 3, "conditionId" to 6833, "logicalOpe" to 1)
|
||||||
|
)),
|
||||||
|
mapOf("mapAreaId" to 2206204, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 3, "conditionId" to 6834, "logicalOpe" to 1),
|
||||||
|
mapOf("type" to 3, "conditionId" to 6835, "logicalOpe" to 1)
|
||||||
|
)),
|
||||||
|
mapOf("mapAreaId" to 2206205, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 3, "conditionId" to 6837, "logicalOpe" to 1)
|
||||||
|
)),
|
||||||
|
mapOf("mapAreaId" to 2206206, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 3, "conditionId" to 6838, "logicalOpe" to 1)
|
||||||
|
)),
|
||||||
|
mapOf("mapAreaId" to 2206207, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 2, "conditionId" to 2206201, "logicalOpe" to 1),
|
||||||
|
mapOf("type" to 2, "conditionId" to 2206202, "logicalOpe" to 1),
|
||||||
|
mapOf("type" to 2, "conditionId" to 2206203, "logicalOpe" to 1),
|
||||||
|
mapOf("type" to 2, "conditionId" to 2206204, "logicalOpe" to 1),
|
||||||
|
mapOf("type" to 2, "conditionId" to 2206205, "logicalOpe" to 1),
|
||||||
|
mapOf("type" to 2, "conditionId" to 2206206, "logicalOpe" to 1)
|
||||||
|
)),
|
||||||
|
mapOf("mapAreaId" to 3229301, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 1, "conditionId" to 3020701, "logicalOpe" to 2)
|
||||||
|
)),
|
||||||
|
mapOf("mapAreaId" to 3229302, "mapAreaConditionList" to listOf(
|
||||||
|
mapOf("type" to 1, "conditionId" to 3020701, "logicalOpe" to 1)
|
||||||
|
))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
|
@ -350,42 +350,7 @@ fun ChusanServletController.init() {
|
||||||
"GetGameEvent" static { db.gameEvent.findByEnable(true).let { mapOf("type" to 1, "length" to it.size, "gameEventList" to it) } }
|
"GetGameEvent" static { db.gameEvent.findByEnable(true).let { mapOf("type" to 1, "length" to it.size, "gameEventList" to it) } }
|
||||||
"GetGameCharge" static { db.gameCharge.findAll().let { mapOf("length" to it.size, "gameChargeList" to it) } }
|
"GetGameCharge" static { db.gameCharge.findAll().let { mapOf("length" to it.size, "gameChargeList" to it) } }
|
||||||
"GetGameGacha" static { db.gameGacha.findAll().let { mapOf("length" to it.size, "gameGachaList" to it, "registIdList" to empty) } }
|
"GetGameGacha" static { db.gameGacha.findAll().let { mapOf("length" to it.size, "gameGachaList" to it, "registIdList" to empty) } }
|
||||||
"GetGameMapAreaCondition" static {
|
"GetGameMapAreaCondition" static { ChusanData.mapAreaCondition }
|
||||||
mapOf(
|
|
||||||
"gameMapAreaConditionList" to listOf(
|
|
||||||
mapOf("mapAreaId" to 2206201, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 3, "conditionId" to 6832, "logicalOpe" to 1)
|
|
||||||
)),
|
|
||||||
mapOf("mapAreaId" to 2206203, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 3, "conditionId" to 6833, "logicalOpe" to 1)
|
|
||||||
)),
|
|
||||||
mapOf("mapAreaId" to 2206204, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 3, "conditionId" to 6834, "logicalOpe" to 1),
|
|
||||||
mapOf("type" to 3, "conditionId" to 6835, "logicalOpe" to 1)
|
|
||||||
)),
|
|
||||||
mapOf("mapAreaId" to 2206205, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 3, "conditionId" to 6837, "logicalOpe" to 1)
|
|
||||||
)),
|
|
||||||
mapOf("mapAreaId" to 2206206, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 3, "conditionId" to 6838, "logicalOpe" to 1)
|
|
||||||
)),
|
|
||||||
mapOf("mapAreaId" to 2206207, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 2, "conditionId" to 2206201, "logicalOpe" to 1),
|
|
||||||
mapOf("type" to 2, "conditionId" to 2206202, "logicalOpe" to 1),
|
|
||||||
mapOf("type" to 2, "conditionId" to 2206203, "logicalOpe" to 1),
|
|
||||||
mapOf("type" to 2, "conditionId" to 2206204, "logicalOpe" to 1),
|
|
||||||
mapOf("type" to 2, "conditionId" to 2206205, "logicalOpe" to 1),
|
|
||||||
mapOf("type" to 2, "conditionId" to 2206206, "logicalOpe" to 1)
|
|
||||||
)),
|
|
||||||
mapOf("mapAreaId" to 3229301, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 1, "conditionId" to 3020701, "logicalOpe" to 2)
|
|
||||||
)),
|
|
||||||
mapOf("mapAreaId" to 3229302, "mapAreaConditionList" to listOf(
|
|
||||||
mapOf("type" to 1, "conditionId" to 3020701, "logicalOpe" to 1)
|
|
||||||
))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// CardMaker (TODO: Somebody test this, I don't have a card maker)
|
// CardMaker (TODO: Somebody test this, I don't have a card maker)
|
||||||
"CMGetUserData" {
|
"CMGetUserData" {
|
||||||
|
|
Loading…
Reference in New Issue