From c0f7d11828c31a6f5c25e77617582c74a92f67ae Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Sat, 4 Jan 2025 08:48:48 -0500 Subject: [PATCH] [+] Net battle log class --- .../chusan/model/userdata/Chu3NetBattleLog.kt | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/main/java/icu/samnyan/aqua/sega/chusan/model/userdata/Chu3NetBattleLog.kt diff --git a/src/main/java/icu/samnyan/aqua/sega/chusan/model/userdata/Chu3NetBattleLog.kt b/src/main/java/icu/samnyan/aqua/sega/chusan/model/userdata/Chu3NetBattleLog.kt new file mode 100644 index 00000000..13f2f66a --- /dev/null +++ b/src/main/java/icu/samnyan/aqua/sega/chusan/model/userdata/Chu3NetBattleLog.kt @@ -0,0 +1,46 @@ +package icu.samnyan.aqua.sega.chusan.model.userdata + +//@Entity(name = "ChusanNetBattleLog") +//@Table(name = "chusan_net_battle_log") +class Chu3NetBattleLog( + val roomId: Int = 0, + val track: Int = 0, + val selectUserId: Int = 0, + val selectUserName: String = "", + val opponentUserId1: Int = 0, + val opponentUserId2: Int = 0, + val opponentUserId3: Int = 0, + val opponentUserName1: String = "", + val opponentUserName2: String = "", + val opponentUserName3: String = "", + val opponentRegionId1: Int = 0, + val opponentRegionId2: Int = 0, + val opponentRegionId3: Int = 0, + val opponentRating1: Int = 0, + val opponentRating2: Int = 0, + val opponentRating3: Int = 0, + val opponentBattleRankId1: Int = 0, + val opponentBattleRankId2: Int = 0, + val opponentBattleRankId3: Int = 0, + val opponentClassEmblemMedal1: Int = 0, + val opponentClassEmblemMedal2: Int = 0, + val opponentClassEmblemMedal3: Int = 0, + val opponentClassEmblemBase1: Int = 0, + val opponentClassEmblemBase2: Int = 0, + val opponentClassEmblemBase3: Int = 0, + val opponentScore1: Int = 0, + val opponentScore2: Int = 0, + val opponentScore3: Int = 0, + val opponentCharaIllustId1: Int = 0, + val opponentCharaIllustId2: Int = 0, + val opponentCharaIllustId3: Int = 0, + val opponentCharaLv1: Int = 0, + val opponentCharaLv2: Int = 0, + val opponentCharaLv3: Int = 0, + val opponentRatingEffectColorId1: Int = 0, + val opponentRatingEffectColorId2: Int = 0, + val opponentRatingEffectColorId3: Int = 0, + val battleRuleId: Int = 0, + val monthPoint: Int = 0, + val eventPoint: Int = 0 +) : Chu3UserEntity()