Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADD]連続ログイン実績の追加 #527

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@ object NicknameMapping {
case No_5006 => NicknameCombination(Some(5006), None, Some(5006))
case No_5007 => NicknameCombination(Some(5007))
case No_5008 => NicknameCombination(Some(5008), Some(9905))
case No_5009 => NicknameCombination(Some(5009), None, Some(5009))
case No_5010 => NicknameCombination(Some(5010), Some(9903), Some(5010))
case No_5011 => NicknameCombination(Some(5011), None, Some(5011))
case No_5012 => NicknameCombination(Some(5012), None, Some(5012))
case No_5013 => NicknameCombination(Some(5013), None, Some(5013))
case No_5014 => NicknameCombination(Some(5014), Some(9905), Some(5014))
case No_5015 => NicknameCombination(Some(5015), None, Some(5015))
case No_5016 => NicknameCombination(Some(5016), None, Some(5016))

case No_5101 => NicknameCombination(Some(5101), None, Some(5101))
case No_5102 => NicknameCombination(Some(5102), Some(9907), Some(5102))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ object Nicknames {
5006 -> HeadTail(s"マイ", s"ブーム"),
5007 -> HeadTail(s"止まらない", s"止まらない"),
5008 -> HeadTail(s"お楽しみ", s"お楽しみ"),
5009 -> HeadTail(s"生活", s"リズム"),
5010 -> HeadTail(s"富", s"名声"),
5011 -> HeadTail(s"不可能", s"脱却"),
5012 -> HeadTail(s"微笑む", s"天使"),
5013 -> HeadTail(s"セカンド", s"ステージ"),
5014 -> HeadTail(s"刹那", s"ひと時"),
5015 -> HeadTail(s"廃人", s"まっしぐら"),
5016 -> HeadTail(s"人間", s"超越"),
// 通算ログイン実績
5101 -> HeadTail(s"いざ", s"二週目"),
5102 -> HeadTail(s"終わり", s"見えた"),
Expand All @@ -110,7 +118,7 @@ object Nicknames {
5122 -> HeadTail(s"長老",s"風格"),
5123 -> FullSet(s"めぐ",s"り",s"巡る"),
5124 -> FullSet(s"仙人",s"すら",s"凌ぐ"),
5125 -> HeadTail(s"四つ葉",s"クローバー"),//の
5125 -> HeadTail(s"四つ葉",s"クローバー"),
// 投票数実績
6001 -> HeadTail(s"狂信者", s"狂信者"),
6002 -> HeadTail(s"全身", s"全霊"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,14 @@ object SeichiAchievement extends Enum[SeichiAchievement] {
case object No_5006 extends NormalAuto(5006, consecutiveLoginDays_>=(5))
case object No_5007 extends NormalAuto(5007, consecutiveLoginDays_>=(3))
case object No_5008 extends NormalAuto(5008, consecutiveLoginDays_>=(2))
case object No_5009 extends HiddenAuto(5009, dependsOn(5001, totalPlayedDays_>=(200)))
soundofhorizon marked this conversation as resolved.
Show resolved Hide resolved
case object No_5010 extends HiddenAuto(5010, dependsOn(5009, totalPlayedDays_>=(300)))
case object No_5011 extends HiddenAuto(5011, dependsOn(5010, totalPlayedDays_>=(365)))
case object No_5012 extends HiddenAuto(5012, dependsOn(5011, totalPlayedDays_>=(540)))
case object No_5013 extends HiddenAuto(5013, dependsOn(5012, totalPlayedDays_>=(730)))
case object No_5014 extends HiddenAuto(5014, dependsOn(5013, totalPlayedDays_>=(910)))
case object No_5015 extends HiddenAuto(5015, dependsOn(5014, totalPlayedDays_>=(1095)))
case object No_5016 extends HiddenAuto(5016, dependsOn(5015, totalPlayedDays_>=(1460)))

// 通算ログイン
case object No_5101 extends NormalAuto(5101, totalPlayedDays_>=(365))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ object AchievementGroupMenu {
AchievementEntry.within(4001 to 4023) :+
Achievement8003UnlockEntry

case ConsecutiveLogins =>
AchievementEntry.within(5001 to 5016)

case TotalLogins =>
AchievementEntry.within(5101 to 5125)

case ConsecutiveLogins =>
AchievementEntry.within(5001 to 5008)

case VoteCounts =>
AchievementEntry.within(6001 to 6008)

Expand Down