PR

【7/15】カムバックキャンペーン #936

wada opened this at 2021-07-09T17:57:53; closed

Description

opened by wada at 2021-07-09T17:57:53; updated 2024-12-16T10:22:55

【7/21】カムバックキャンペーン #913
仕様書:https://docs.google.com/spreadsheets/d/1D3raeKzE61AzU1kpqb4i3FB7N1B-Y96PtKtY6KXDjbY/edit#gid=435280042

PR概要

アイテムパックの内容更新
カムバックのスカウト特典の調整
・古いクエストの削除
・クエストページ調整
トップページにカムバックユーザー一覧追加
カムバックログインボーナスの実装
・ログインボーナス演出
告知内でキャンペーン報酬の進捗を表示

仕様補足

PFからメールを送信したユーザーのみ、事前に報酬を配布する
ログインボーナスはキャンペーン期間中のみ配布
・最終日にカムバックしたら1日分もらって終了
アイテムパックは、キャンペーン期間が終了しても72時間は販売する
・最終日カムバックしたら72時間後まで購入できる
スカウト特典(カムバッククエスト)は常設

カムバック判定は、user_info.reset_timeを確認
カムバックユーザ判定は、user_setting.comeback_timeを確認

ブランチ

web: comeback_camp
db: comeback_camp

更新テーブル

#ユーザボーナス獲得管理
CREATE TABLE `user_comeback_campaign` (
  `user_no` int(11) unsigned NOT NULL,
  `login_count` tinyint(4) unsigned NOT NULL COMMENT '合計ログイン日数',
  `stamina` smallint(5) unsigned NOT NULL COMMENT '合計消費スタミナ',
  `comeback_time` int(11) unsigned NOT NULL COMMENT 'カムバック時間',
  `open_date` date NOT NULL COMMENT 'キャンペーン開催開始日時',
  PRIMARY KEY (`user_no`,`open_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

#パック設定
csv/master_comeback_campaign_pack.csv
csv/master_comeback_campaign_pack_info.csv
csv/master_shop.csv
csv/master_shop_item.csv
wada assign at 2021-07-12T16:17:14: Not assigned:wada
wada change_title at 2021-07-12T17:24:52: [WIP]カムバックキャンペーン 【7/15】カムバックキャンペーン
wada add_label at 2021-07-12T17:24:54: レビュー待ち

Comment

#12093 by wada at 2021-07-12T17:28:01; updated 2021-07-12T17:28:01

@iwamoto @kouho
レビューお願いします。
仕様がややこしいので、確認前に必ず仕様書を確認してください。

3つのイベントが存在します。
・メール送信ユーザへのアイテム配布
・キャンペーン期間中のカムバックボーナス(ログボ、パック)
・常設のカムバックイベント(スカウト、クエスト)

Comment

#12109 by wada at 2021-07-12T18:21:00; updated 2021-07-12T18:21:00

以下の画像は、作成待ちのためダミー画像を入れています。

 public_html/img/banner/Campaign/banner_comeback_1.jpg
 public_html/img/banner/Campaign/banner_comeback_2.jpg

Comment

#12124 by wada at 2021-07-13T18:19:12; updated 2021-07-13T18:19:12

@iwamoto
daoクラスのインスタンスと$comeback_timeの減算対応しました。

Comment

#12141 by iwamoto at 2021-07-14T10:55:25; updated 2021-07-14T10:55:25

@wada
daoクラスのインスタンスと$comeback_timeの減算対応確認できました。

カムバック対象者のみの海賊応援パックについて
マスターデータでは金額が 1900コイン に対して、画像は 1000コイン表記(1000コインパック)になってます
仕様書もどちら表記してありますが、どちらが正でしょうか?

Comment

#12142 by kouho at 2021-07-14T10:55:58; updated 2021-07-14T10:58:40

@wada
海賊応援パックの値段が1900で設定されていますが、仕様書と画像と異なるようなので確認お願いいたします。

海賊応援パックのプレゼント文言が覚醒合成パックになっていますのでこちらも合わせて確認お願いいたします。

Comment

#12143 by iwamoto at 2021-07-14T11:03:02; updated 2021-07-14T11:03:38
海賊応援パックのプレゼント文言が覚醒合成パックになっていますのでこちらも合わせて確認お願いいたします。

こちらについては恐らくdb側から取得しているのではなく
define_y:line 1872

で定義されているようです

Comment

#12144 by wada at 2021-07-14T12:36:21; updated 2021-07-14T12:36:21

アイテムパックの商品名、販売期間と価格を修正しました。
販売期間はキャンペーン期間+3日です。

Comment

#12145 by wada at 2021-07-14T12:38:17; updated 2021-07-14T12:38:17

@kouho
同じインデックス名なので分かりにくいですが、ログイン日数のチェックは下の変数でチェックしています。

//------------------------------------------------------------
// カムバッククエスト(全ユーザー対象)
// 対象条件
$this->_config['required_login_count'] = 14;
$this->_config['inactive_days'] = 30;

Comment

#12146 by iwamoto at 2021-07-14T13:22:30; updated 2021-07-14T13:22:30

@wada
累計ログイン特典の2日目の報酬が変更されています
快速の懐中時計 -> エメティア (画像の変更も必要かと…)

また、カムバック特典内容にある とくぱん がまとめて配布されています

Comment

#12151 by wada at 2021-07-14T15:34:07; updated 2021-07-14T15:34:07

その他対応しました。
・メインページにお知らせへのバナー設置(カムバックユーザのみ)
・バナー画像更新
・お知らせでのステータス表記調整

@iwamoto
報酬内容を修正しました。

Comment

#12158 by iwamoto at 2021-07-14T20:10:03; updated 2021-07-14T20:10:03

@wada
報酬の修正を確認しました。大丈夫かと思います。

また、メインページに設置されたバナーが表示されません
urlの ``campaign` を大文字の `Campaign``へ変更願います

Comment

#12166 by wada at 2021-07-15T09:48:51; updated 2021-07-15T09:48:51

@iwamoto
バナーurl修正しました。

Comment

#12178 by kouho at 2021-07-15T13:26:45; updated 2021-07-15T13:26:45

@wada
トップのカムバックした海賊達に自分のユーザー名が出る際に
スカウトするボタンが表示されてました。確認お願いいたします。
自分の場合は表示させない方がいいと思います。
!スクリーンショット 2021-07-15 11

Comment

#12179 by wada at 2021-07-15T13:43:04; updated 2021-07-15T13:43:04

@kouho
トップページのカムバックした海賊たちから自分の情報を削除しました。

Comment

#12181 by iwamoto at 2021-07-15T15:05:27; updated 2021-07-15T15:05:27

@wada
カムバッククエストその1「海賊団に入団しよう」にて
クリア条件の下に「海賊団を探す」のリンクがありますが
表示条件が戦争参加になっていると思います。

レビューしました、他は大丈夫だと思います。

Comment

#12182 by wada at 2021-07-15T15:24:31; updated 2021-07-15T15:24:31

@iwamoto
ありがとうございます。
リンクの表示条件修正しました。

Comment

#12183 by kouho at 2021-07-15T16:16:31; updated 2021-07-15T16:16:31

@wada
修正箇所含めて確認しました。問題ないかと思います。

kouho add_label at 2021-07-15T16:17:03: 皇甫 LGTM
wada merge at 2021-07-15T16:28:09: 【7/15】カムバックキャンペーン
wada close at 2021-07-15T16:28:09: Close

commit comment

#76 by iwamoto at 2021-07-13T14:06:25; lib/models/Comeback.php / old:None new:282
f548efb57775d665911f47c8c986e06d2a3a9ba9

$user_comeback_daoの定義がありませんので、セットお願い致します。

commit comment

#77 by iwamoto at 2021-07-13T14:08:55; lib/models/Comeback.php / old:254 new:None
9e0e75f7f695fe7527e7f2706bd9fd22aca546a7

渡される$comeback_time = 0 のため
$comeback_time が 負の値になってしまうので insert できない

user_settingテーブルの$comeback_timeが初期値0

commit comment

#78 by kouho at 2021-07-14T11:05:40; lib/conf/class/ComebackCampaignConfig.class.php / old:None new:35
9e0e75f7f695fe7527e7f2706bd9fd22aca546a7

@wada
Comeback.phpのlogin_process関数を見たところ以下の判定が入っておりました。

if ($comeback_time == 0 && $user_info['tutorial'] == 1000
			&& $user_info['login_count'] >= $comeback_config['required_login_count'] && $user_info['reset_time'] <= $comeback_check)

$this->_config['campaign_reward']['required_login_count'] = 14;
にしなくても大丈夫なのでしょうか?

Commit range

base3fd333f6f15b55313d501b7c20497170a40c733e
head9e0e75f7f695fe7527e7f2706bd9fd22aca546a7
base branchjolly/jr-web:develop
head branchjolly/jr-web:comeback_camp

View commits

Commit details are loaded from Git when a dynamic archive server is running, or can be embedded with --include-commits.
Files changed1287 filesView patch
statusfile
addedcomposer.json
addedcomposer.lock
modifiedcpanel_html/template/header.tpl
modifiedfiles/battle/battle.swf
modifiedfiles/battle/battle_light.swf
modifiedfiles/battle/battle_raid.swf
modifiedfiles/teamWar/teamWar.swf
addedfla/special_gacha/yamato_gacha_sp.fla
addedfla/special_gacha/yamato_gacha_sp.html
addedfla/special_gacha/yamato_gacha_sp.swf
modifiedfla/チーム戦争/teamWar.fla
modifiedfla/バトル/as/func.as
modifiedfla/バトル/battle.swf
modifiedfla/バトル/battle_light.swf
modifiedfla/レイドボスバトル/as/func.as
modifiedfla/レイドボスバトル/battle_raid.swf
addedisland_img/object_20002.png
modifiedlib/SkillFunc.inc
modifiedlib/SubFunc.inc
modifiedlib/SubFunc_mission.inc
modifiedlib/ajax/areaItem_result.inc
modifiedlib/ajax/build_imgComposite.inc
modifiedlib/ajax/build_lvupList.inc
modifiedlib/ajax/build_selectBreak.inc
modifiedlib/ajax/build_selectDetail.inc
modifiedlib/ajax/build_selectList.inc
addedlib/ajax/cardPieceShop_storeSellExec.inc
modifiedlib/ajax/default_default.inc
modifiedlib/ajax/default_info.inc
modifiedlib/ajax/item_result.inc
modifiedlib/ajax/item_select.inc
modifiedlib/ajax/main_listGold.inc
modifiedlib/ajax/main_listGoldExec.inc
modifiedlib/ajax/quest_clear.inc
modifiedlib/ajax/shop_select.inc
modifiedlib/ajax/teamBBS_default.inc
modifiedlib/ajax/teamWar_attack.inc
modifiedlib/ajax/teamWar_attackResult.inc
modifiedlib/ajax/teamWar_defenseResult.inc
modifiedlib/ajax/team_bbsWrite.inc
modifiedlib/ajax/team_petMpExec.inc
modifiedlib/class/building/BuildingStorageManager.class.php
modifiedlib/class/commerce/CommerceArrivalManager.class.php
modifiedlib/class/const/ItemConst.class.php
modifiedlib/class/const/PresentNameConst.class.php
addedlib/class/const/TeamBbsSystemIconConst.class.php
modifiedlib/class/controller/JrControllerBuildingStorage.class.php
modifiedlib/class/platform/yamada/YamadaAPI.class.php
modifiedlib/class/platform/yamada/YamadaPlatformService.class.php
modifiedlib/class/present_box/PresentBoxManager.class.php
modifiedlib/class/vsraid/RaidBossBreakManager.class.php
modifiedlib/conf/class/BattleEventConfig.class.php
modifiedlib/conf/class/BellGachaDxConfig.class.php
modifiedlib/conf/class/BuildEventItemConfig.class.php
modifiedlib/conf/class/CardPieceConfig.class.php
modifiedlib/conf/class/ComebackCampaignConfig.class.php
modifiedlib/conf/class/DailyEventConfig.class.php
modifiedlib/conf/class/GachaConfig.class.php
modifiedlib/conf/class/ItemPackConfig.class.php
modifiedlib/conf/class/JackpotWarConfig.class.php
addedlib/conf/class/LimitedStampConfig.class.php
modifiedlib/conf/class/LoginBonusConfig.class.php
modifiedlib/conf/class/MissionMonsterConfig.class.php
modifiedlib/conf/class/NewIslandConfig.class.php
modifiedlib/conf/class/NewIslandStageConfig.class.php
addedlib/conf/class/PirateStoreConfig.class.php
modifiedlib/conf/class/RaidMonsterConfig.class.php
modifiedlib/conf/class/RaidMonsterTypeConfig.class.php
modifiedlib/conf/class/ReprintGachaConfig.class.php
modifiedlib/conf/class/SPGachaConfig.class.php
addedlib/conf/class/ShipBuildListConfig.class.php
addedlib/conf/class/SkillFriendConfig.class.php
modifiedlib/conf/class/TeamPetConfig.class.php
modifiedlib/conf/class/TeamWarConfig.class.php
modifiedlib/conf/class/WeekdayLimitedItemConfig.class.php
modifiedlib/conf/define.inc
modifiedlib/conf/define_y.inc
modifiedlib/cpanel/ajax/m_hourly_active_user_ajax.inc
modifiedlib/cpanel/ajax/m_hourly_item_log_ajax.inc
modifiedlib/cpanel/m_new_island_result.inc
modifiedlib/exec/cpanel_hourly_active_user.php
modifiedlib/exec/cpanel_hourly_active_user.sh
modifiedlib/exec/cpanel_hourly_item_log.php
modifiedlib/exec/cpanel_hourly_item_log.sh
addedlib/exec/daily_user_collect_gold.inc
addedlib/exec/daily_user_data.sh
modifiedlib/exec/del_log_gold_collect.inc
modifiedlib/exec/del_team_bbs.inc
modifiedlib/exec/event_item_change_gold.inc
modifiedlib/exec/matching_team_battle_rematch.php
modifiedlib/exec/team_request_permit.inc
modifiedlib/exec/tool_comeback_campaign_item.inc
addedlib/exec/tool_cpanel_hourly_active_user.php
modifiedlib/exec/tool_cpanel_hourly_item_log.php
addedlib/exec/tool_get_all_player_best_gold_collect.inc
addedlib/exec/tool_get_all_player_collect.inc
addedlib/exec/tool_hoten_sp_build_gold_collect_item.php
addedlib/exec/tool_hoten_war_win_reward.php
modifiedlib/exec/tool_jrce_status.php
modifiedlib/mobile/AreaItem__Result.inc
modifiedlib/mobile/Battle__Player.inc
modifiedlib/mobile/BottleSP__Receive.inc
modifiedlib/mobile/Build__ImgComposite.inc
modifiedlib/mobile/CardPieceShop__CardDetail.inc
modifiedlib/mobile/CardPieceShop__Check.inc
modifiedlib/mobile/CardPieceShop__Default.inc
modifiedlib/mobile/CardPieceShop__Result.inc
modifiedlib/mobile/Friend__Bbs.inc
modifiedlib/mobile/Friend__Detail.inc
modifiedlib/mobile/Help__SkillSearch.inc
modifiedlib/mobile/Item__Result.inc
modifiedlib/mobile/Main__ListGold.inc
modifiedlib/mobile/Main__ListGoldComplete.inc
modifiedlib/mobile/Main__ListGoldCompleteResult.inc
modifiedlib/mobile/Present__Default.inc
modifiedlib/mobile/Present__History.inc
modifiedlib/mobile/Quest__Clear.inc
modifiedlib/mobile/Ship__Default.inc
modifiedlib/mobile/Ship__LimitedShip.inc
modifiedlib/mobile/Ship__MakeComposite.inc
modifiedlib/mobile/Ship__SelectDetail.inc
modifiedlib/mobile/ShowDown__Battle.inc
modifiedlib/mobile/TeamWar__Default.inc
modifiedlib/mobile/TeamWar__swf.inc
modifiedlib/mobile/Team__DetailMember.inc
modifiedlib/mobile/Team__PetMpResult.inc
modifiedlib/mobile/Tutorial.inc
modifiedlib/mobile/Tutorial__b.inc
modifiedlib/models/Card_piece.php
modifiedlib/models/Comeback.php
modifiedlib/models/Gacha_skillball.php
addedlib/models/Login_bonus.php
modifiedlib/models/Newisland_event_model.php
addedlib/models/Pirate_store.php
modifiedlib/models/Raid_battle_vs_model.php
modifiedlib/models/Yamada_point_quest.php
modifiedlib/models/Yamada_stamp_rally.php
addedlib/models/dao/anniversary_login_bonus.php
addedlib/models/dao/log_pirate_store_sell.php
addedlib/models/dao/master_yamada_stamp_rally.php
addedlib/models/dao/user_comeback_campaign.php
modifiedlib/models/dao/user_event_new_island.php
addedlib/models/dao/user_yamada_stamp_rally.php
addedlib/models/dao/user_yamada_stamp_rally_log.php
addedlib/models/gacha/Collab_random.php
modifiedlib/models/gacha/SPGacha_manager.php
modifiedlib/models/newisland/Newisland_user.php
modifiedlib/models/raid/Attack_bonus.php
modifiedlib/models/raid/Battle_user.php
modifiedlib/models/raid_vs/Attack_bonus_vs.php
modifiedlib/public/Anniversary-Animation.inc
modifiedlib/public/Anniversary-Login.inc
modifiedlib/public/Bar-Default.inc
modifiedlib/public/Bar-Gacha.inc
modifiedlib/public/Bar-GachaCheck.inc
modifiedlib/public/Bar-GachaExec.inc
modifiedlib/public/Bar-GachaList.inc
modifiedlib/public/Bar-GachaRatio.inc
modifiedlib/public/Bar-GachaResult.inc
modifiedlib/public/Bar-GachaResultFree.inc
modifiedlib/public/Bar-SPGacha.inc
modifiedlib/public/Bar-SPGachaCheck.inc
modifiedlib/public/Bar-SPGachaExec.inc
modifiedlib/public/Bar-SPGachaList.inc
modifiedlib/public/Bar-SPGachaResult.inc
modifiedlib/public/BottleSP-Receive.inc
modifiedlib/public/Build-Info.inc
modifiedlib/public/Card-ListResult.inc
modifiedlib/public/CardPieceShop-Default.inc
addedlib/public/CardPieceShop-StoreBuy.inc
addedlib/public/CardPieceShop-StoreBuyCheck.inc
addedlib/public/CardPieceShop-StoreBuyExec.inc
addedlib/public/CardPieceShop-StoreBuyResult.inc
modifiedlib/public/Comeback-Quest.inc
modifiedlib/public/Deck-SelectCard.inc
modifiedlib/public/Friend-Bbs.inc
modifiedlib/public/Friend-BbsOwn.inc
modifiedlib/public/Friend.inc
modifiedlib/public/Help-SkillSearch.inc
modifiedlib/public/Main-ListGoldComplete.inc
modifiedlib/public/Main-ListGoldLog.inc
modifiedlib/public/Main.inc
modifiedlib/public/Quest-Clear.inc
modifiedlib/public/Quest-Daily.inc
modifiedlib/public/Quest-DailyClear.inc
modifiedlib/public/Quest-Default.inc
modifiedlib/public/Quest-Detail.inc
modifiedlib/public/Ship-Default.inc
modifiedlib/public/Ship-LimitedShip.inc
modifiedlib/public/Ship-MakeComposite.inc
modifiedlib/public/Shop-AssortmentSwf.inc
modifiedlib/public/ShowDown-Battle.inc
addedlib/public/SkillBallChanger-Info.inc
modifiedlib/public/Team.inc
modifiedlib/public/TeamWar.inc
modifiedlib/public/Tutorial-Scroll.inc
modifiedlib/public/Tutorial.inc
modifiedlib/public/teamBBS_default.inc
addedminify_js.php
modifiedmobile_html/template/CardPieceShop__CardDetail.tpl
modifiedmobile_html/template/CardPieceShop__Check.tpl
modifiedmobile_html/template/CardPieceShop__Default.tpl
modifiedmobile_html/template/CardPieceShop__Result.tpl
modifiedmobile_html/template/Team__DetailMember.tpl
modifiedmobile_html/template/Team__Notice.tpl
modifiedmobile_html/template/team_bbs.tpl
modifiedpublic_html/ajax.php
addedpublic_html/chart_js/Chart.min.js
modifiedpublic_html/css/design.css
addedpublic_html/images/collaboration_yamato/bg.jpg
addedpublic_html/images/collaboration_yamato/effect01.png
addedpublic_html/images/collaboration_yamato/effect02.png
addedpublic_html/images/collaboration_yamato/effect03.png
addedpublic_html/images/collaboration_yamato/effect04.png
addedpublic_html/images/collaboration_yamato/effect05.png
addedpublic_html/images/collaboration_yamato/effect06.png
addedpublic_html/images/collaboration_yamato/effect08.png
addedpublic_html/images/collaboration_yamato/rogo.png
addedpublic_html/images/collaboration_yamato/spark_1.png
addedpublic_html/images/collaboration_yamato/spark_2.png
addedpublic_html/images/collaboration_yamato/thunder01.png
addedpublic_html/images/collaboration_yamato/thunder02.png
addedpublic_html/images/collaboration_yamato/thunder03.png
addedpublic_html/images/collaboration_yamato/thunder04.png
modifiedpublic_html/img/assortment/10031/head.jpg
deletedpublic_html/img/assortment/10031/m_head.jpg
deletedpublic_html/img/assortment/10031/m_start_pack1_1.jpg
modifiedpublic_html/img/assortment/10031/start_pack1_1.jpg
modifiedpublic_html/img/assortment/10031/start_pack1_2.jpg
modifiedpublic_html/img/assortment/10150/head.jpg
addedpublic_html/img/assortment/10161/head.jpg
addedpublic_html/img/assortment/10161/spgacha_item_1.jpg
addedpublic_html/img/assortment/10161/spgacha_item_2.jpg
addedpublic_html/img/assortment/10161/spgacha_item_3.jpg
addedpublic_html/img/assortment/10162/spgacha_item_1.jpg
addedpublic_html/img/assortment/10162/spgacha_item_2.jpg
addedpublic_html/img/assortment/10162/spgacha_item_3.jpg
addedpublic_html/img/assortment/10163/spgacha_item_1.jpg
addedpublic_html/img/assortment/10163/spgacha_item_2.jpg
addedpublic_html/img/assortment/10163/spgacha_item_3.jpg
addedpublic_html/img/banner/Campaign/banner_comeback_1.jpg
addedpublic_html/img/banner/Campaign/banner_comeback_2.jpg
addedpublic_html/img/banner/Campaign/banner_comeback_scout_1.jpg
addedpublic_html/img/banner/Campaign/banner_comeback_scout_2.jpg
modifiedpublic_html/img/banner/Campaign/banner_item_pack_59_2.jpg
modifiedpublic_html/img/banner/banner_skillball_gacha_start_1.jpg
modifiedpublic_html/img/banner/banner_skillball_gacha_start_2.jpg
modifiedpublic_html/img/banner/shop_banner10031_1.jpg
modifiedpublic_html/img/banner/shop_banner10031_2.jpg
addedpublic_html/img/battle/skill_no2384_ef/effect01.png
addedpublic_html/img/battle/skill_no2384_ef/effect02.png
addedpublic_html/img/battle/skill_no2384_ef/effect03.png
addedpublic_html/img/battle/skill_no2384_ef/effect04.png
addedpublic_html/img/battle/skill_no2384_ef/effect05.png
addedpublic_html/img/battle/skill_no2384_ef/effect06.png
addedpublic_html/img/battle/skill_no2384_ef/effect07.png
addedpublic_html/img/battle/skill_no2384_ef/spark_1.png
addedpublic_html/img/battle/skill_no2384_ef/spark_2.png
addedpublic_html/img/battle/skill_no2384_ef/text_1.png
addedpublic_html/img/battle/skill_no2384_ef/text_2.png
addedpublic_html/img/battle/skill_no2384_ef/text_3.png
addedpublic_html/img/battle/skill_no2384_ef/thunder01.png
addedpublic_html/img/battle/skill_no2384_ef/thunder02.png
addedpublic_html/img/battle/skill_no2384_ef/thunder03.png
addedpublic_html/img/battle/skill_no2384_ef/thunder04.png
addedpublic_html/img/card/120/10063.jpg
addedpublic_html/img/card/120/10064.jpg
addedpublic_html/img/card/120/1492.jpg
addedpublic_html/img/card/120/1493.jpg
addedpublic_html/img/card/120/1494.jpg
addedpublic_html/img/card/120/1495.jpg
modifiedpublic_html/img/card/120/222.jpg
addedpublic_html/img/card/240/10063.jpg
addedpublic_html/img/card/240/10064.jpg
addedpublic_html/img/card/240/1492.jpg
addedpublic_html/img/card/240/1493.jpg
addedpublic_html/img/card/240/1494.jpg
addedpublic_html/img/card/240/1495.jpg
modifiedpublic_html/img/card/240/222.jpg
addedpublic_html/img/card/26/10063.jpg
addedpublic_html/img/card/26/10064.jpg
addedpublic_html/img/card/26/1492.jpg
addedpublic_html/img/card/26/1493.jpg
addedpublic_html/img/card/26/1494.jpg
addedpublic_html/img/card/26/1495.jpg
addedpublic_html/img/card/320/10063.jpg
addedpublic_html/img/card/320/10064.jpg
addedpublic_html/img/card/320/1492.jpg
addedpublic_html/img/card/320/1493.jpg
addedpublic_html/img/card/320/1494.jpg
addedpublic_html/img/card/320/1495.jpg
modifiedpublic_html/img/card/320/222.jpg
addedpublic_html/img/card/640/10063.jpg
addedpublic_html/img/card/640/10064.jpg
addedpublic_html/img/card/640/1492.jpg
addedpublic_html/img/card/640/1493.jpg
addedpublic_html/img/card/640/1494.jpg
addedpublic_html/img/card/640/1495.jpg
modifiedpublic_html/img/card/640/222.jpg
addedpublic_html/img/card/70/10063.jpg
addedpublic_html/img/card/70/10064.jpg
addedpublic_html/img/card/70/1492.jpg
addedpublic_html/img/card/70/1493.jpg
addedpublic_html/img/card/70/1494.jpg
addedpublic_html/img/card/70/1495.jpg
modifiedpublic_html/img/card/70/222.jpg
addedpublic_html/img/card/70main/10063.jpg
addedpublic_html/img/card/70main/10064.jpg
addedpublic_html/img/card/70main/1492.jpg
addedpublic_html/img/card/70main/1493.jpg
addedpublic_html/img/card/70main/1494.jpg
addedpublic_html/img/card/70main/1495.jpg
addedpublic_html/img/card/battle/154/10063.jpg
addedpublic_html/img/card/battle/154/10064.jpg
addedpublic_html/img/card/battle/154/1492.jpg
addedpublic_html/img/card/battle/154/1493.jpg
addedpublic_html/img/card/battle/154/1494.jpg
addedpublic_html/img/card/battle/154/1495.jpg
addedpublic_html/img/card/battle/58/10063.jpg
addedpublic_html/img/card/battle/58/10064.jpg
addedpublic_html/img/card/battle/58/1492.jpg
addedpublic_html/img/card/battle/58/1493.jpg
addedpublic_html/img/card/battle/58/1494.jpg
addedpublic_html/img/card/battle/58/1495.jpg
addedpublic_html/img/card/battle_result/ship_10063.png
addedpublic_html/img/card/battle_result/ship_10064.png
addedpublic_html/img/card_piece/card_detail/10063_1.png
addedpublic_html/img/card_piece/card_detail/10063_2.png
addedpublic_html/img/card_piece/card_detail/10064_1.png
addedpublic_html/img/card_piece/card_detail/10064_2.png
addedpublic_html/img/card_piece/card_detail/319_1.png
addedpublic_html/img/card_piece/card_detail/319_2.png
addedpublic_html/img/card_piece/card_detail/51_1.png
addedpublic_html/img/card_piece/card_detail/51_2.png
modifiedpublic_html/img/card_piece/card_detail/553_1.png
renamedpublic_html/img/card_piece/shop/icon/1.png -> public_html/img/card_piece/icon/1.png
addedpublic_html/img/card_piece/icon/101.png
addedpublic_html/img/card_piece/icon/2.png
addedpublic_html/img/card_piece/icon/7.png
addedpublic_html/img/card_piece/icon/8.png
renamedpublic_html/img/card_piece/shop/icon/general.png -> public_html/img/card_piece/icon/general.png
renamedpublic_html/img/card_piece/shop/icon/general2.png -> public_html/img/card_piece/icon/general2.png
addedpublic_html/img/card_piece/shop/checkbutton_store_sell.png
addedpublic_html/img/card_piece/shop/checkframe_down.png
addedpublic_html/img/card_piece/shop/checkframe_middle.png
addedpublic_html/img/card_piece/shop/checkframe_up.png
addedpublic_html/img/card_piece/shop/endframe_store_sell.png
addedpublic_html/img/card_piece/shop/header_store_buy.jpg
addedpublic_html/img/card_piece/shop/header_store_piece.jpg
addedpublic_html/img/card_piece/shop/header_store_sell.jpg
addedpublic_html/img/card_piece/shop/icon_money_1.png
addedpublic_html/img/card_piece/shop/icon_money_blue.png
addedpublic_html/img/card_piece/shop/icon_money_green.png
addedpublic_html/img/card_piece/shop/icon_money_red.png
addedpublic_html/img/card_piece/shop/limited.png
addedpublic_html/img/card_piece/shop/paper_limit_time.png
addedpublic_html/img/card_piece/shop/paper_store_selll.png
addedpublic_html/img/card_piece/shop/paper_store_selll_limit_time.png
addedpublic_html/img/card_piece/shop/pirate_store_buy_tab.png
addedpublic_html/img/card_piece/shop/pirate_store_piece_tab.png
addedpublic_html/img/card_piece/shop/pirate_store_sell_tab.png
addedpublic_html/img/card_piece/shop/requestbutton_store_sell.png
addedpublic_html/img/card_piece/shop/store_buy_card_piece_link.png
addedpublic_html/img/card_piece/shop/store_buy_finalcheck.png
addedpublic_html/img/common/icon_bottle_rare.jpg
addedpublic_html/img/common/icon_build_lv_up.jpg
addedpublic_html/img/common/icon_castaway_1_nyakka.jpg
addedpublic_html/img/common/icon_castaway_1_wadoru.jpg
addedpublic_html/img/common/icon_castaway_2_1.jpg
addedpublic_html/img/common/icon_castaway_2_2.jpg
addedpublic_html/img/common/icon_castaway_2_4.jpg
addedpublic_html/img/common/icon_commerce_bonus_rare.jpg
addedpublic_html/img/common/icon_consecutive_victory.jpg
addedpublic_html/img/common/icon_consecutive_victory_100.jpg
addedpublic_html/img/common/icon_consecutive_victory_160.jpg
addedpublic_html/img/common/icon_consecutive_victory_200.jpg
addedpublic_html/img/common/icon_consecutive_victory_260.jpg
addedpublic_html/img/common/icon_consecutive_victory_300.jpg
addedpublic_html/img/common/icon_consecutive_victory_400.jpg
addedpublic_html/img/common/icon_consecutive_victory_500.jpg
addedpublic_html/img/common/icon_consecutive_victory_60.jpg
addedpublic_html/img/common/icon_gp.jpg
addedpublic_html/img/common/icon_gp_1.jpg
addedpublic_html/img/common/icon_gp_2.jpg
addedpublic_html/img/common/icon_gp_q_1.jpg
addedpublic_html/img/common/icon_gp_q_2.jpg
addedpublic_html/img/common/icon_gp_q_a.jpg
addedpublic_html/img/common/icon_gp_q_b.jpg
addedpublic_html/img/common/icon_gp_q_c.jpg
addedpublic_html/img/common/icon_gp_q_d.jpg
addedpublic_html/img/common/icon_gp_q_e.jpg
addedpublic_html/img/common/icon_land.jpg
addedpublic_html/img/common/icon_new_island_monster.jpg
addedpublic_html/img/common/icon_new_island_remains.jpg
addedpublic_html/img/common/icon_new_island_temple.jpg
addedpublic_html/img/common/icon_new_support_campaign.jpg
addedpublic_html/img/common/icon_ocean_area_10_levels.jpg
addedpublic_html/img/common/icon_ocean_area_50_levels.jpg
addedpublic_html/img/common/icon_ocean_area_start_challenge.jpg
addedpublic_html/img/common/icon_ocean_area_victory.jpg
addedpublic_html/img/common/icon_prize_r.jpg
addedpublic_html/img/common/icon_quest_clear.jpg
addedpublic_html/img/common/icon_raid_attack_boost.jpg
addedpublic_html/img/common/icon_raid_attack_boost_soon.jpg
addedpublic_html/img/common/icon_raid_break.jpg
addedpublic_html/img/common/icon_raid_call.jpg
addedpublic_html/img/common/icon_raid_discovery.jpg
addedpublic_html/img/common/icon_raid_first_attack.jpg
addedpublic_html/img/common/icon_raid_win.jpg
addedpublic_html/img/common/icon_raid_win_team.jpg
addedpublic_html/img/common/icon_red_ball_recovery.jpg
addedpublic_html/img/common/icon_team_emblem_1.jpg
addedpublic_html/img/common/icon_team_emblem_10.jpg
addedpublic_html/img/common/icon_team_emblem_11.jpg
addedpublic_html/img/common/icon_team_emblem_12.jpg
addedpublic_html/img/common/icon_team_emblem_13.jpg
addedpublic_html/img/common/icon_team_emblem_14.jpg
addedpublic_html/img/common/icon_team_emblem_15.jpg
addedpublic_html/img/common/icon_team_emblem_16.jpg
addedpublic_html/img/common/icon_team_emblem_17.jpg
addedpublic_html/img/common/icon_team_emblem_18.jpg
addedpublic_html/img/common/icon_team_emblem_19.jpg
addedpublic_html/img/common/icon_team_emblem_2.jpg
addedpublic_html/img/common/icon_team_emblem_20.jpg
addedpublic_html/img/common/icon_team_emblem_21.jpg
addedpublic_html/img/common/icon_team_emblem_22.jpg
addedpublic_html/img/common/icon_team_emblem_23.jpg
addedpublic_html/img/common/icon_team_emblem_24.jpg
addedpublic_html/img/common/icon_team_emblem_25.jpg
addedpublic_html/img/common/icon_team_emblem_26.jpg
addedpublic_html/img/common/icon_team_emblem_27.jpg
addedpublic_html/img/common/icon_team_emblem_28.jpg
addedpublic_html/img/common/icon_team_emblem_29.jpg
addedpublic_html/img/common/icon_team_emblem_3.jpg
addedpublic_html/img/common/icon_team_emblem_30.jpg
addedpublic_html/img/common/icon_team_emblem_4.jpg
addedpublic_html/img/common/icon_team_emblem_5.jpg
addedpublic_html/img/common/icon_team_emblem_6.jpg
addedpublic_html/img/common/icon_team_emblem_7.jpg
addedpublic_html/img/common/icon_team_emblem_8.jpg
addedpublic_html/img/common/icon_team_emblem_9.jpg
addedpublic_html/img/common/icon_team_lv_up.jpg
addedpublic_html/img/common/icon_team_welcome.jpg
addedpublic_html/img/common/icon_wanted_win.jpg
addedpublic_html/img/common/icon_wanted_win_k.jpg
addedpublic_html/img/common/icon_war_pet_1.jpg
addedpublic_html/img/common/icon_war_pet_10.jpg
addedpublic_html/img/common/icon_war_pet_11.jpg
addedpublic_html/img/common/icon_war_pet_2.jpg
addedpublic_html/img/common/icon_war_pet_3.jpg
addedpublic_html/img/common/icon_war_pet_4.jpg
addedpublic_html/img/common/icon_war_pet_5.jpg
addedpublic_html/img/common/icon_war_pet_6.jpg
addedpublic_html/img/common/icon_war_pet_7.jpg
addedpublic_html/img/common/icon_war_pet_8.jpg
addedpublic_html/img/common/icon_war_pet_9.jpg
addedpublic_html/img/common/icon_war_win10.jpg
addedpublic_html/img/common/icon_win_flag.jpg
modifiedpublic_html/img/gacha/117/banner_gacha117.jpg
modifiedpublic_html/img/gacha/117/banner_gacha117_2.jpg
modifiedpublic_html/img/gacha/117/gacha117.jpg
modifiedpublic_html/img/gacha/117/gacha117_2.jpg
deletedpublic_html/img/gacha/117/gacha117_bg.jpg
deletedpublic_html/img/gacha/117/gacha117_card_info158.jpg
deletedpublic_html/img/gacha/117/gacha117_card_info159.jpg
deletedpublic_html/img/gacha/117/gacha117_card_info160.jpg
deletedpublic_html/img/gacha/117/gacha117_card_info161.jpg
deletedpublic_html/img/gacha/117/gacha117_info.jpg
addedpublic_html/img/gacha/117/gacha117_info1.jpg
addedpublic_html/img/gacha/117/gacha117_info2.jpg
addedpublic_html/img/gacha/117/gacha117_info3.jpg
addedpublic_html/img/gacha/117/gacha117_info4.jpg
addedpublic_html/img/gacha/117/gacha117_info5.jpg
addedpublic_html/img/gacha/117/gacha117_info6.jpg
modifiedpublic_html/img/gacha/117/gacha117_title.jpg
addedpublic_html/img/gacha/117/gacha117_top.jpg
addedpublic_html/img/gacha/117/gacha_page_03.jpg
addedpublic_html/img/gacha/117/gacha_result_footer.png
addedpublic_html/img/gacha/117/gacha_result_top.jpg
addedpublic_html/img/gacha/129/banner_gacha129.jpg
addedpublic_html/img/gacha/129/banner_gacha129_2.jpg
deletedpublic_html/img/gacha/129/banner_gacha129_reprint.jpg
modifiedpublic_html/img/gacha/129/gacha129.jpg
modifiedpublic_html/img/gacha/129/gacha129_2.jpg
modifiedpublic_html/img/gacha/129/gacha129_card_info118.jpg
modifiedpublic_html/img/gacha/129/gacha129_card_info133.jpg
modifiedpublic_html/img/gacha/129/gacha129_card_info27.jpg
modifiedpublic_html/img/gacha/129/gacha129_card_info84.jpg
modifiedpublic_html/img/gacha/129/gacha129_info.jpg
modifiedpublic_html/img/gacha/129/gacha129_info2.jpg
modifiedpublic_html/img/gacha/129/gacha129_info3.jpg
addedpublic_html/img/gacha/129/gacha129_info4.jpg
modifiedpublic_html/img/gacha/129/gacha129_title.jpg
addedpublic_html/img/gacha/129/gacha129_title2.jpg
addedpublic_html/img/gacha/133/banner_gacha133.jpg
addedpublic_html/img/gacha/133/banner_gacha133_2.jpg
deletedpublic_html/img/gacha/133/banner_gacha133_reprint.jpg
modifiedpublic_html/img/gacha/133/gacha133.jpg
modifiedpublic_html/img/gacha/133/gacha133_2.jpg
modifiedpublic_html/img/gacha/133/gacha133_card_info49.jpg
modifiedpublic_html/img/gacha/133/gacha133_card_info65.jpg
modifiedpublic_html/img/gacha/133/gacha133_card_info83.jpg
modifiedpublic_html/img/gacha/133/gacha133_card_info92.jpg
modifiedpublic_html/img/gacha/133/gacha133_info.jpg
modifiedpublic_html/img/gacha/133/gacha133_info2.jpg
modifiedpublic_html/img/gacha/133/gacha133_info3.jpg
addedpublic_html/img/gacha/133/gacha133_info4.jpg
modifiedpublic_html/img/gacha/133/gacha133_title.jpg
addedpublic_html/img/gacha/133/gacha133_title2.jpg
modifiedpublic_html/img/gacha/139/banner_gacha139.jpg
modifiedpublic_html/img/gacha/139/banner_gacha139_2.jpg
addedpublic_html/img/gacha/139/composition_bonus.jpg
modifiedpublic_html/img/gacha/139/gacha139.jpg
modifiedpublic_html/img/gacha/139/gacha139_2.jpg
modifiedpublic_html/img/gacha/139/gacha139_card_info171.jpg
modifiedpublic_html/img/gacha/139/gacha139_card_info267.jpg
modifiedpublic_html/img/gacha/139/gacha139_card_info272.jpg
modifiedpublic_html/img/gacha/139/gacha139_card_info315.jpg
modifiedpublic_html/img/gacha/139/gacha139_info.jpg
modifiedpublic_html/img/gacha/139/gacha139_info2.jpg
modifiedpublic_html/img/gacha/139/gacha139_info3.jpg
modifiedpublic_html/img/gacha/139/gacha139_info4.jpg
modifiedpublic_html/img/gacha/139/gacha139_title.jpg
addedpublic_html/img/gacha/139/gacha139_title2.jpg
modifiedpublic_html/img/gacha/143/banner_gacha143.jpg
modifiedpublic_html/img/gacha/143/banner_gacha143_2.jpg
addedpublic_html/img/gacha/143/composition_bonus.jpg
modifiedpublic_html/img/gacha/143/gacha143.jpg
modifiedpublic_html/img/gacha/143/gacha143_2.jpg
modifiedpublic_html/img/gacha/143/gacha143_card_info240.jpg
modifiedpublic_html/img/gacha/143/gacha143_card_info281.jpg
modifiedpublic_html/img/gacha/143/gacha143_card_info312.jpg
modifiedpublic_html/img/gacha/143/gacha143_card_info366.jpg
modifiedpublic_html/img/gacha/143/gacha143_info.jpg
modifiedpublic_html/img/gacha/143/gacha143_info2.jpg
modifiedpublic_html/img/gacha/143/gacha143_info3.jpg
modifiedpublic_html/img/gacha/143/gacha143_info4.jpg
modifiedpublic_html/img/gacha/143/gacha143_title.jpg
addedpublic_html/img/gacha/143/gacha143_title2.jpg
modifiedpublic_html/img/gacha/147/banner_gacha147.jpg
modifiedpublic_html/img/gacha/147/banner_gacha147_2.jpg
addedpublic_html/img/gacha/147/composition_bonus.jpg
modifiedpublic_html/img/gacha/147/gacha147.jpg
modifiedpublic_html/img/gacha/147/gacha147_2.jpg
modifiedpublic_html/img/gacha/147/gacha147_card_info152.jpg
modifiedpublic_html/img/gacha/147/gacha147_card_info237.jpg
modifiedpublic_html/img/gacha/147/gacha147_card_info275.jpg
modifiedpublic_html/img/gacha/147/gacha147_card_info324.jpg
modifiedpublic_html/img/gacha/147/gacha147_info.jpg
modifiedpublic_html/img/gacha/147/gacha147_info2.jpg
modifiedpublic_html/img/gacha/147/gacha147_info3.jpg
modifiedpublic_html/img/gacha/147/gacha147_info4.jpg
modifiedpublic_html/img/gacha/147/gacha147_title.jpg
addedpublic_html/img/gacha/147/gacha147_title2.jpg
modifiedpublic_html/img/gacha/154/banner_gacha154.jpg
modifiedpublic_html/img/gacha/154/banner_gacha154_2.jpg
addedpublic_html/img/gacha/154/composition_bonus.jpg
modifiedpublic_html/img/gacha/154/gacha154.jpg
modifiedpublic_html/img/gacha/154/gacha154_2.jpg
modifiedpublic_html/img/gacha/154/gacha154_card_info303.jpg
modifiedpublic_html/img/gacha/154/gacha154_card_info336.jpg
modifiedpublic_html/img/gacha/154/gacha154_card_info370.jpg
modifiedpublic_html/img/gacha/154/gacha154_card_info420.jpg
modifiedpublic_html/img/gacha/154/gacha154_info.jpg
modifiedpublic_html/img/gacha/154/gacha154_info2.jpg
modifiedpublic_html/img/gacha/154/gacha154_info3.jpg
modifiedpublic_html/img/gacha/154/gacha154_info4.jpg
modifiedpublic_html/img/gacha/154/gacha154_title.jpg
addedpublic_html/img/gacha/154/gacha154_title2.jpg
modifiedpublic_html/img/gacha/171/banner_gacha171.jpg
modifiedpublic_html/img/gacha/171/banner_gacha171_2.jpg
modifiedpublic_html/img/gacha/171/gacha171.jpg
modifiedpublic_html/img/gacha/171/gacha171_2.jpg
deletedpublic_html/img/gacha/171/gacha171_card_info133.jpg
addedpublic_html/img/gacha/171/gacha171_card_info174.jpg
addedpublic_html/img/gacha/171/gacha171_card_info180.jpg
addedpublic_html/img/gacha/171/gacha171_card_info190.jpg
modifiedpublic_html/img/gacha/171/gacha171_card_info205.jpg
deletedpublic_html/img/gacha/171/gacha171_card_info28.jpg
deletedpublic_html/img/gacha/171/gacha171_card_info80.jpg
modifiedpublic_html/img/gacha/171/gacha171_info.jpg
modifiedpublic_html/img/gacha/171/gacha171_info2.jpg
modifiedpublic_html/img/gacha/171/gacha171_info3.jpg
modifiedpublic_html/img/gacha/171/gacha171_info4.jpg
modifiedpublic_html/img/gacha/171/gacha171_title.jpg
addedpublic_html/img/gacha/171/gacha171_top.jpg
addedpublic_html/img/gacha/171/updateinfo1.jpg
addedpublic_html/img/gacha/193/banner_gacha193.jpg
addedpublic_html/img/gacha/193/banner_gacha193_2.jpg
deletedpublic_html/img/gacha/193/banner_gacha193_reprint.jpg
modifiedpublic_html/img/gacha/193/gacha193.jpg
modifiedpublic_html/img/gacha/193/gacha193_2.jpg
deletedpublic_html/img/gacha/193/gacha193_card_info24.jpg
deletedpublic_html/img/gacha/193/gacha193_card_info38.jpg
deletedpublic_html/img/gacha/193/gacha193_card_info42.jpg
deletedpublic_html/img/gacha/193/gacha193_card_info62.jpg
modifiedpublic_html/img/gacha/193/gacha193_info.jpg
modifiedpublic_html/img/gacha/193/gacha193_info2.jpg
modifiedpublic_html/img/gacha/193/gacha193_info3.jpg
addedpublic_html/img/gacha/193/gacha193_info4.jpg
modifiedpublic_html/img/gacha/193/gacha193_title.jpg
addedpublic_html/img/gacha/193/gacha193_top.jpg
addedpublic_html/img/gacha/193/updateinfo1.jpg
addedpublic_html/img/gacha/check_ticket_2.jpg
addedpublic_html/img/gacha/gacha_coin_object117.png
addedpublic_html/img/gacha/gacha_coin_object117_1.png
addedpublic_html/img/gacha/skillball/changer/info_01.jpg
addedpublic_html/img/gacha/skillball/changer/info_02.jpg
addedpublic_html/img/gacha/skillball/changer/info_03.jpg
addedpublic_html/img/gacha/special/collaboration_yamato/bg.jpg
addedpublic_html/img/gacha/special/collaboration_yamato/effect01.png
addedpublic_html/img/gacha/special/collaboration_yamato/effect02.png
addedpublic_html/img/gacha/special/collaboration_yamato/effect03.png
addedpublic_html/img/gacha/special/collaboration_yamato/effect04.png
addedpublic_html/img/gacha/special/collaboration_yamato/effect05.png
addedpublic_html/img/gacha/special/collaboration_yamato/effect06.png
addedpublic_html/img/gacha/special/collaboration_yamato/effect08.png
addedpublic_html/img/gacha/special/collaboration_yamato/rogo.png
addedpublic_html/img/gacha/special/collaboration_yamato/spark_1.png
addedpublic_html/img/gacha/special/collaboration_yamato/spark_2.png
addedpublic_html/img/gacha/special/collaboration_yamato/thunder01.png
addedpublic_html/img/gacha/special/collaboration_yamato/thunder02.png
addedpublic_html/img/gacha/special/collaboration_yamato/thunder03.png
addedpublic_html/img/gacha/special/collaboration_yamato/thunder04.png
addedpublic_html/img/gacha/special/item/item_6_2.jpg
addedpublic_html/img/gacha/stepboxinfo/129/info1.jpg
addedpublic_html/img/gacha/stepboxinfo/129/info2.jpg
addedpublic_html/img/gacha/stepboxinfo/129/info3.jpg
addedpublic_html/img/gacha/stepboxinfo/129/info4.jpg
addedpublic_html/img/gacha/stepboxinfo/129/info5.jpg
addedpublic_html/img/gacha/stepboxinfo/129/info6.jpg
addedpublic_html/img/gacha/stepboxinfo/133/info1.jpg
addedpublic_html/img/gacha/stepboxinfo/133/info2.jpg
addedpublic_html/img/gacha/stepboxinfo/133/info3.jpg
addedpublic_html/img/gacha/stepboxinfo/133/info4.jpg
addedpublic_html/img/gacha/stepboxinfo/133/info5.jpg
addedpublic_html/img/gacha/stepboxinfo/133/info6.jpg
addedpublic_html/img/gold_collect_report/icon_calendar.png
addedpublic_html/img/gold_collect_report/report_back_middle.png
addedpublic_html/img/gold_collect_report/report_back_top.png
addedpublic_html/img/gold_collect_report/report_back_under.png
addedpublic_html/img/gold_collect_report/report_best.png
addedpublic_html/img/gold_collect_report/report_today.png
addedpublic_html/img/gold_collect_report/report_yesterday.png
addedpublic_html/img/gold_collect_report/secretary/1.png
addedpublic_html/img/info_event/info_event_179_1.jpg
addedpublic_html/img/info_event/info_event_179_2.jpg
addedpublic_html/img/info_event/info_event_210_1.jpg
addedpublic_html/img/info_event/info_event_210_2.jpg
modifiedpublic_html/img/info_jrye/542/info1.jpg
modifiedpublic_html/img/info_jrye/542/info2.jpg
modifiedpublic_html/img/info_jrye/542/info3.jpg
modifiedpublic_html/img/info_jrye/542/info4.jpg
modifiedpublic_html/img/info_jrye/542/info5.jpg
addedpublic_html/img/info_jrye/665/item_1_1.jpg
addedpublic_html/img/info_jrye/665/item_1_2.jpg
addedpublic_html/img/info_jrye/665/item_1_3.jpg
addedpublic_html/img/info_jrye/665/item_2_1.jpg
addedpublic_html/img/info_jrye/665/item_2_2.jpg
addedpublic_html/img/info_jrye/665/item_2_3.jpg
addedpublic_html/img/info_jrye/665/item_3_1.jpg
addedpublic_html/img/info_jrye/665/item_3_2.jpg
addedpublic_html/img/info_jrye/665/item_3_3.jpg
addedpublic_html/img/info_jrye/665/item_4_1.jpg
addedpublic_html/img/info_jrye/665/item_4_2.jpg
addedpublic_html/img/info_jrye/665/item_4_3.jpg
modifiedpublic_html/img/info_jrye/700/info_card_bonus.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info2-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info2.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info3-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info3.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info4-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info4.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info5-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/147/info5.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info2-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info2.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info3-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info3.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info4-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info4.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info5-2.jpg
addedpublic_html/img/info_jrye/CharmInfo/154/info5.jpg
addedpublic_html/img/info_jrye/SkillBallInfo/common/medalGacha6.jpg
addedpublic_html/img/island/object/object_20002.png
modifiedpublic_html/img/item/120/10005.jpg
modifiedpublic_html/img/item/120/10031.jpg
addedpublic_html/img/item/120/10161.jpg
addedpublic_html/img/item/120/10162.jpg
addedpublic_html/img/item/120/10163.jpg
addedpublic_html/img/item/120/1903.jpg
modifiedpublic_html/img/item/120/71.jpg
modifiedpublic_html/img/item/150/10005.jpg
modifiedpublic_html/img/item/150/10031.jpg
addedpublic_html/img/item/150/10161.jpg
addedpublic_html/img/item/150/10162.jpg
addedpublic_html/img/item/150/10163.jpg
addedpublic_html/img/item/150/1903.jpg
modifiedpublic_html/img/item/150/71.jpg
addedpublic_html/img/item/58/1903.jpg
modifiedpublic_html/img/item/58/71.jpg
modifiedpublic_html/img/item/60/10005.jpg
modifiedpublic_html/img/item/60/10031.jpg
addedpublic_html/img/item/60/10161.jpg
addedpublic_html/img/item/60/10162.jpg
addedpublic_html/img/item/60/10163.jpg
addedpublic_html/img/item/60/1903.jpg
modifiedpublic_html/img/item/60/71.jpg
modifiedpublic_html/img/item/70/10005.jpg
modifiedpublic_html/img/item/70/10031.jpg
addedpublic_html/img/item/70/10161.jpg
addedpublic_html/img/item/70/10162.jpg
addedpublic_html/img/item/70/10163.jpg
addedpublic_html/img/item/70/1903.jpg
modifiedpublic_html/img/item/70/71.jpg
addedpublic_html/img/item/card_piece/120/101.jpg
addedpublic_html/img/item/card_piece/120/2.jpg
addedpublic_html/img/item/card_piece/120/7.jpg
addedpublic_html/img/item/card_piece/120/8.jpg
addedpublic_html/img/item/card_piece/150/101.jpg
addedpublic_html/img/item/card_piece/150/2.jpg
addedpublic_html/img/item/card_piece/150/7.jpg
addedpublic_html/img/item/card_piece/150/8.jpg
addedpublic_html/img/item/card_piece/58/101.jpg
addedpublic_html/img/item/card_piece/58/2.jpg
addedpublic_html/img/item/card_piece/58/7.jpg
addedpublic_html/img/item/card_piece/58/8.jpg
addedpublic_html/img/item/card_piece/60/101.jpg
addedpublic_html/img/item/card_piece/60/2.jpg
addedpublic_html/img/item/card_piece/60/7.jpg
addedpublic_html/img/item/card_piece/60/8.jpg
addedpublic_html/img/item/card_piece/70/101.jpg
addedpublic_html/img/item/card_piece/70/2.jpg
addedpublic_html/img/item/card_piece/70/7.jpg
addedpublic_html/img/item/card_piece/70/8.jpg
modifiedpublic_html/img/item/limited_gacha_ticket/120/2.jpg
modifiedpublic_html/img/item/limited_gacha_ticket/150/2.jpg
modifiedpublic_html/img/item/limited_gacha_ticket/58/2.jpg
modifiedpublic_html/img/item/limited_gacha_ticket/60/2.jpg
modifiedpublic_html/img/item/limited_gacha_ticket/70/2.jpg
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/_1_seira01.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/_1_seira02.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/_1_tokupan01.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/_1_tokupan02.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/_1anniversary_rogo_sp.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/bg01.jpg
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/bg02.jpg
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/bg03.jpg
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/nyakka.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/party_popper.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/stage_curtain.png
addedpublic_html/img/login/anniversary/1th_anniversary_login_bonus/wadoru.png
deletedpublic_html/img/login/loginbonus/5/login_anniversary_1-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_10-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_11-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_2-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_2-2.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_3-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_3-2.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_4-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_5-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_5-2.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_6-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_6-2.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_7-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_8-1.jpg
deletedpublic_html/img/login/loginbonus/5/login_anniversary_9-1.jpg
addedpublic_html/img/login/loginbonus/5/login_bonus_1.jpg
addedpublic_html/img/login/loginbonus/5/login_bonus_2.jpg
addedpublic_html/img/login/loginbonus/5/login_bonus_3.jpg
addedpublic_html/img/login/loginbonus/5/login_bonus_4.jpg
addedpublic_html/img/login/loginbonus/5/login_bonus_5.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_1-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_1-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_1-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_10-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_10-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_10-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_2-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_2-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_2-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_3-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_3-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_3-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_4-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_4-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_4-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_5-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_5-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_5-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_6-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_6-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_6-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_7-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_7-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_7-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_8-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_8-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_8-3.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_9-1.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_9-2.jpg
addedpublic_html/img/login/loginbonus/6/login_anniversary_9-3.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_1.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_10.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_11.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_12.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_13.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_14.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_2.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_3.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_4.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_5.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_6.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_7.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_8.jpg
deletedpublic_html/img/login/loginbonus/6/login_bonus_9.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_1-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_1-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_1-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_10-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_2-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_2-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_2-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_3-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_3-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_3-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_4-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_4-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_4-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_5-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_5-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_5-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_6-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_6-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_6-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_7-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_7-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_7-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_8-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_8-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_8-3.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_9-1.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_9-2.jpg
deletedpublic_html/img/login/loginbonus/7/login_anniversary_9-3.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_1.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_10.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_11.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_12.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_13.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_14.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_15.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_2.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_3.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_4.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_5.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_6.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_7.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_8.jpg
addedpublic_html/img/login/loginbonus/7/login_bonus_9.jpg
addedpublic_html/img/login/loginbonus/beginner/beginner_login_152.jpg
addedpublic_html/img/login/loginbonus/beginner/beginner_login_315.jpg
addedpublic_html/img/login/loginbonus/beginner/beginner_login_420.jpg
addedpublic_html/img/login/loginbonus/beginner/beginner_login_present_7_152.jpg
addedpublic_html/img/login/loginbonus/beginner/beginner_login_present_7_315.jpg
addedpublic_html/img/login/loginbonus/beginner/beginner_login_present_7_420.jpg
modifiedpublic_html/img/main/event_icon/raid/515.png
modifiedpublic_html/img/main/event_icon/raid/515_rare.png
modifiedpublic_html/img/main/event_icon/raid/515_team.png
addedpublic_html/img/main/main_pirate_store.png
addedpublic_html/img/main/st_icon_1004.gif
addedpublic_html/img/main/st_icon_1005.gif
addedpublic_html/img/material/120/1004.jpg
addedpublic_html/img/material/120/1005.jpg
addedpublic_html/img/material/150/1004.jpg
addedpublic_html/img/material/150/1005.jpg
addedpublic_html/img/material/60/1004.jpg
addedpublic_html/img/material/60/1005.jpg
addedpublic_html/img/material/70/1004.jpg
addedpublic_html/img/material/70/1005.jpg
addedpublic_html/img/mission/card/1492.png
addedpublic_html/img/mission/card/1493.png
addedpublic_html/img/mission/card/1494.png
addedpublic_html/img/mission/card/1495.png
addedpublic_html/img/mission/newisland/10/bg10_0.jpg
addedpublic_html/img/mission/newisland/10/bg11_0.jpg
addedpublic_html/img/mission/newisland/10/bg12_0.jpg
addedpublic_html/img/mission/newisland/10/effect/ef140.png
addedpublic_html/img/mission/newisland/10/effect/ef601.png
addedpublic_html/img/mission/newisland/10/effect/ef607_item.png
addedpublic_html/img/mission/newisland/10/effect/ef620.jpg
addedpublic_html/img/mission/newisland/10/effect/ef623.png
addedpublic_html/img/mission/newisland/10/effect/ef629.png
addedpublic_html/img/mission/newisland/10/effect/ef630.png
addedpublic_html/img/mission/newisland/10/effect/ef632.png
addedpublic_html/img/mission/newisland/10/effect/ef633.png
addedpublic_html/img/mission/newisland/10/effect/ef634.png
addedpublic_html/img/mission/newisland/10/effect/ef644.png
addedpublic_html/img/mission/newisland/10/newisland_pointbar/0.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/1.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/10.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/11.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/12.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/13.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/14.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/15.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/16.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/17.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/18.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/19.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/2.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/20.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/21.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/22.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/23.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/24.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/25.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/26.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/27.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/28.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/29.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/3.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/30.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/31.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/32.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/33.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/34.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/35.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/36.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/37.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/38.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/39.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/4.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/40.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/41.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/42.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/43.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/44.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/45.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/46.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/47.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/48.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/49.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/5.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/50.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/51.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/52.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/53.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/54.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/55.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/56.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/57.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/58.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/59.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/6.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/60.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/61.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/62.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/63.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/64.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/65.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/66.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/67.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/68.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/69.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/7.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/70.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/71.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/72.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/73.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/74.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/75.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/76.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/77.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/78.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/79.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/8.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/80.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/81.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/82.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/83.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/84.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/85.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/86.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/87.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/88.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/89.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/9.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/90.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/91.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/92.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/93.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/94.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/95.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/96.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/97.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/98.gif
addedpublic_html/img/mission/newisland/10/newisland_pointbar/99.gif
addedpublic_html/img/mission/newisland/10/stage_title/10.png
addedpublic_html/img/mission/newisland/10/stage_title/11.png
addedpublic_html/img/mission/newisland/10/stage_title/12.png
addedpublic_html/img/mission/newisland/9/bg10_0.jpg
addedpublic_html/img/mission/newisland/9/bg11_0.jpg
addedpublic_html/img/mission/newisland/9/bg12_0.jpg
addedpublic_html/img/mission/newisland/9/effect/ef140.png
addedpublic_html/img/mission/newisland/9/effect/ef601.png
addedpublic_html/img/mission/newisland/9/effect/ef607_item.png
addedpublic_html/img/mission/newisland/9/effect/ef620.jpg
addedpublic_html/img/mission/newisland/9/effect/ef623.png
addedpublic_html/img/mission/newisland/9/effect/ef629.png
addedpublic_html/img/mission/newisland/9/effect/ef630.png
addedpublic_html/img/mission/newisland/9/effect/ef632.png
addedpublic_html/img/mission/newisland/9/effect/ef633.png
addedpublic_html/img/mission/newisland/9/effect/ef634.png
addedpublic_html/img/mission/newisland/9/effect/ef644.png
addedpublic_html/img/mission/newisland/9/newisland_pointbar/0.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/1.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/10.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/11.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/12.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/13.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/14.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/15.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/16.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/17.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/18.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/19.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/2.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/20.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/21.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/22.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/23.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/24.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/25.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/26.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/27.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/28.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/29.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/3.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/30.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/31.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/32.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/33.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/34.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/35.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/36.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/37.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/38.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/39.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/4.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/40.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/41.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/42.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/43.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/44.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/45.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/46.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/47.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/48.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/49.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/5.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/50.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/51.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/52.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/53.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/54.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/55.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/56.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/57.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/58.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/59.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/6.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/60.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/61.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/62.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/63.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/64.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/65.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/66.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/67.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/68.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/69.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/7.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/70.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/71.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/72.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/73.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/74.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/75.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/76.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/77.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/78.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/79.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/8.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/80.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/81.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/82.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/83.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/84.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/85.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/86.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/87.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/88.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/89.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/9.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/90.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/91.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/92.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/93.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/94.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/95.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/96.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/97.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/98.gif
addedpublic_html/img/mission/newisland/9/newisland_pointbar/99.gif
addedpublic_html/img/mission/newisland/9/stage_title/10.png
addedpublic_html/img/mission/newisland/9/stage_title/11.png
addedpublic_html/img/mission/newisland/9/stage_title/12.png
addedpublic_html/img/mission/newisland/effect/event_no10/ef624.jpg
addedpublic_html/img/mission/newisland/effect/event_no10/ef628.png
addedpublic_html/img/mission/newisland/effect/event_no9/ef624.jpg
addedpublic_html/img/mission/newisland/effect/event_no9/ef628.png
addedpublic_html/img/mission/newisland/newisland_bar/event_no10/1.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no10/2.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no10/3.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no10/4.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no10/5.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no10/mainpage_mission_btn_icon.png
addedpublic_html/img/mission/newisland/newisland_bar/event_no10/reward.png
addedpublic_html/img/mission/newisland/newisland_bar/event_no9/1.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no9/2.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no9/3.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no9/4.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no9/5.jpg
addedpublic_html/img/mission/newisland/newisland_bar/event_no9/mainpage_mission_btn_icon.png
addedpublic_html/img/mission/newisland/newisland_bar/event_no9/reward.png
addedpublic_html/img/mobile/card_piece/shop/m_header_store_piece.jpg
addedpublic_html/img/pf/yamada/banner_stamp_rally_3.jpg
addedpublic_html/img/raid/point_item/112_1.png
addedpublic_html/img/raid/point_item/112_2.png
addedpublic_html/img/raid/point_item/30_1.png
addedpublic_html/img/raid/point_item/30_2.png
addedpublic_html/img/ranking/event_battle/info10.jpg
addedpublic_html/img/ranking/event_battle/info9.jpg
addedpublic_html/img/ranking/event_island/info10.jpg
addedpublic_html/img/ranking/event_island/info9.jpg
addedpublic_html/img/ranking/event_raid/info_raid18.jpg
addedpublic_html/img/ranking/event_raid/info_raid19.jpg
addedpublic_html/img/season_pass/main/modal/frame_bottom.png
addedpublic_html/img/season_pass/main/modal/frame_detail_top.png
addedpublic_html/img/season_pass/main/modal/frame_get_top.png
addedpublic_html/img/season_pass/main/modal/frame_middle.png
addedpublic_html/img/season_pass/main/modal/frame_middle_1.png
addedpublic_html/img/season_pass/main/modal/frame_pass_bottom.png
addedpublic_html/img/season_pass/main/modal/frame_pass_middle.png
addedpublic_html/img/season_pass/main/modal/frame_pass_top.png
addedpublic_html/img/season_pass/main/modal/frame_reliese_top.png
addedpublic_html/img/season_pass/main/modal/frame_skin_bottom.png
addedpublic_html/img/season_pass/main/modal/frame_skin_middle.png
addedpublic_html/img/season_pass/main/modal/frame_skin_top.png
addedpublic_html/img/season_pass/main/modal/frame_teamrank_top.png
addedpublic_html/img/season_pass/main/x.png
addedpublic_html/img/shop/banner/59_end_1.jpg
addedpublic_html/img/shop/banner/59_end_2.jpg
addedpublic_html/img/shop/banner/59_start_1.jpg
addedpublic_html/img/shop/banner/59_start_2.jpg
addedpublic_html/img/shop/banner/gold_pack/44_start_1.jpg
addedpublic_html/img/shop/banner/gold_pack/44_start_2.jpg
modifiedpublic_html/img/shop/campaign_9_1.jpg
addedpublic_html/img/sp_menu/d_spMenu_pirate_store.png
addedpublic_html/img/team/stamp/63.png
addedpublic_html/img/team/stamp/66.png
addedpublic_html/img/team/stamp/67.png
addedpublic_html/img/team/stamp/68.png
addedpublic_html/img/team/stamp/69.png
addedpublic_html/img/team/tw_bg_storm_mild.jpg
addedpublic_html/img/team/tw_enemyship_10063_left.png
addedpublic_html/img/team/tw_enemyship_10063_right.png
addedpublic_html/img/team/tw_enemyship_10064_left.png
addedpublic_html/img/team/tw_enemyship_10064_right.png
addedpublic_html/img/team/tw_ship_10063_left.png
addedpublic_html/img/team/tw_ship_10063_right.png
addedpublic_html/img/team/tw_ship_10064_left.png
addedpublic_html/img/team/tw_ship_10064_right.png
addedpublic_html/img/temp_quest/quest_title_yamato.jpg
addedpublic_html/img/temp_team/chat/icon_important.png
addedpublic_html/img/temp_team/chat/icon_important_batch.png
addedpublic_html/img/temp_team/chat/tab_all.png
addedpublic_html/img/temp_team/chat/tab_all_off.png
addedpublic_html/img/temp_team/chat/tab_conversation.png
addedpublic_html/img/temp_team/chat/tab_conversation_off.png
addedpublic_html/img/temp_team/chat/tab_important.png
addedpublic_html/img/temp_team/chat/tab_important_off.png
addedpublic_html/img/temp_team/chat/tab_remark.png
addedpublic_html/img/temp_team/chat/tab_remark_off.png
addedpublic_html/img/temp_team/chat/title_chat.png
modifiedpublic_html/index.php
modifiedpublic_html/js/JOLLYROGER.js
modifiedpublic_html/js/JOLLYROGER_battle.js
modifiedpublic_html/js/JOLLYROGER_func.js
modifiedpublic_html/js/autoload_js.php
addedpublic_html/js/gacha_animation_js/yamato_gacha_sp.js
addedpublic_html/js/jr_battle.min.js
addedpublic_html/js/jr_collect_ef.min.js
addedpublic_html/js/jr_func.min.js
modifiedpublic_html/js/jr_main.js
addedpublic_html/js/jr_main.min.js
addedpublic_html/js/jr_mission.min.js
addedpublic_html/js/jr_opening.min.js
modifiedpublic_html/template/Anniversary-Animation.tpl
modifiedpublic_html/template/Anniversary-Login.tpl
modifiedpublic_html/template/Bar-Default.tpl
modifiedpublic_html/template/Bar-GachaCheckReprint2.tpl
modifiedpublic_html/template/Bar-GachaExec.tpl
modifiedpublic_html/template/Bar-GachaExecReprint2.tpl
modifiedpublic_html/template/Bar-GachaList.tpl
modifiedpublic_html/template/Bar-GachaRatioReprint.tpl
modifiedpublic_html/template/Bar-GachaReprint2.tpl
modifiedpublic_html/template/Bar-GachaReprint3.tpl
modifiedpublic_html/template/Bar-GachaResult.tpl
modifiedpublic_html/template/Bar-GachaResultFreeHigh.tpl
modifiedpublic_html/template/Bar-GachaResultReprint2.tpl
modifiedpublic_html/template/Bar-Gacha_old.tpl
modifiedpublic_html/template/Bar-SPGachaAnimation.tpl
modifiedpublic_html/template/Bar-SPGachaCheck.tpl
modifiedpublic_html/template/Bar-SPGachaList.tpl
addedpublic_html/template/Bar-SPGachaList_117.tpl
modifiedpublic_html/template/Bar-SPGachaResult.tpl
addedpublic_html/template/Bar-SPGacha_117.tpl
modifiedpublic_html/template/Bar-SpecialGachaAnimation.tpl
modifiedpublic_html/template/Battle.tpl
modifiedpublic_html/template/BuildingStorage-StoreConfirm.tpl
modifiedpublic_html/template/CardPieceShop-Default.tpl
addedpublic_html/template/CardPieceShop-StoreBuy.tpl
addedpublic_html/template/CardPieceShop-StoreBuyCheck.tpl
addedpublic_html/template/CardPieceShop-StoreBuyResult.tpl
modifiedpublic_html/template/Comeback-Quest.tpl
modifiedpublic_html/template/Commerce-Default.tpl
modifiedpublic_html/template/Composition-Check.tpl
modifiedpublic_html/template/Deck-Default.tpl
modifiedpublic_html/template/Default-NGError.tpl
modifiedpublic_html/template/Default.tpl
modifiedpublic_html/template/Invite.tpl
modifiedpublic_html/template/Item.tpl
modifiedpublic_html/template/Main-ListGoldComplete.tpl
modifiedpublic_html/template/Main-Location.tpl
modifiedpublic_html/template/Main.tpl
modifiedpublic_html/template/Mission.tpl
modifiedpublic_html/template/Quest-Clear.tpl
modifiedpublic_html/template/Quest-Daily.tpl
modifiedpublic_html/template/Quest-Default.tpl
modifiedpublic_html/template/Quest-Detail.tpl
modifiedpublic_html/template/Quest-TeamWarDetail.tpl
modifiedpublic_html/template/Raid-GetMedal.tpl
modifiedpublic_html/template/Raid-GetMedalVs.tpl
modifiedpublic_html/template/Raid-Vs.tpl
modifiedpublic_html/template/Ship-Detail.tpl
modifiedpublic_html/template/Ship-LimitedShip.tpl
modifiedpublic_html/template/Shop-Assortment.tpl
modifiedpublic_html/template/Shop-AssortmentSwf2.tpl
modifiedpublic_html/template/Shop-GoldSet.tpl
modifiedpublic_html/template/Shop-StarterPack.tpl
modifiedpublic_html/template/Shop.tpl
modifiedpublic_html/template/SkillBallChanger-Check.tpl
modifiedpublic_html/template/SkillBallChanger-Default.tpl
addedpublic_html/template/SkillBallChanger-Info.tpl
modifiedpublic_html/template/SkillBallChanger-ItemSkill.tpl
modifiedpublic_html/template/SkillBallChanger-Result.tpl
modifiedpublic_html/template/Team-Notice.tpl
modifiedpublic_html/template/Team.tpl
modifiedpublic_html/template/TeamScout-Comeback.tpl
modifiedpublic_html/template/TeamWar.tpl
modifiedpublic_html/template/Tutorial-501.tpl
modifiedpublic_html/template/footer.tpl
modifiedpublic_html/template/footer_nolink.tpl
modifiedpublic_html/template/header_sp.tpl
modifiedpublic_html/template/parts/parts_card_info_modal.tpl
modifiedpublic_html/template/parts_Default-Info__727_1.tpl
modifiedpublic_html/template/parts_Default-Info__727_2.tpl
modifiedpublic_html/template/parts_Default-Info__727_3.tpl
addedpublic_html/template/parts_cardpiece_info_modal.tpl
addedpublic_html/template/parts_pirate_store_item_info_modal.tpl
modifiedpublic_html/template/parts_raid_default.tpl
modifiedpublic_html/template/parts_yamada_footer.tpl
addedtool/debug/reset_anniv_last_login.php
addedtool/debug/yamada_develop.sh
modifiedtool/event/test_newisland_event.php
modifiedtool/event/test_raid_event.php
Patch body is stored as a separate file to keep this page lightweight.

Review comment

#76 by iwamoto at 2021-07-13T14:06:25; lib/models/Comeback.php / old:None new:282
f548efb57775d665911f47c8c986e06d2a3a9ba9

$user_comeback_daoの定義がありませんので、セットお願い致します。

Review comment

#77 by iwamoto at 2021-07-13T14:08:55; lib/models/Comeback.php / old:254 new:None
9e0e75f7f695fe7527e7f2706bd9fd22aca546a7

渡される$comeback_time = 0 のため
$comeback_time が 負の値になってしまうので insert できない

user_settingテーブルの$comeback_timeが初期値0

Review comment

#78 by kouho at 2021-07-14T11:05:40; lib/conf/class/ComebackCampaignConfig.class.php / old:None new:35
9e0e75f7f695fe7527e7f2706bd9fd22aca546a7

@wada
Comeback.phpのlogin_process関数を見たところ以下の判定が入っておりました。

if ($comeback_time == 0 && $user_info['tutorial'] == 1000
			&& $user_info['login_count'] >= $comeback_config['required_login_count'] && $user_info['reset_time'] <= $comeback_check)

$this->_config['campaign_reward']['required_login_count'] = 14;
にしなくても大丈夫なのでしょうか?