PR

レイドモンスター戦闘後のダメージ表示追加 #514

iwamoto opened this at 2020-12-23T17:01:02; closed

Description

opened by iwamoto at 2020-12-23T17:01:02; updated 2023-08-25T18:57:22

【レイド】戦闘後のダメージ量表示追加 #465

#:1回攻撃のみ表示、5連続攻撃では表示なし
#:今回一撃のみのランキング表示はなし

#レイド一撃ダメージの記録
CREATE TABLE `user_raid_monster_best_damage` (
  `event_no` int(11) NOT NULL,
  `user_no` int(11) NOT NULL,
  `raid_no` int(11) NOT NULL,
  `raid_lv` int(11) NOT NULL,
  `best_damage` int(11) NOT NULL,
  UNIQUE KEY `user_no` (`event_no`,`user_no`,`raid_no`,`raid_lv`),
  KEY `raid_no` (`event_no`,`raid_no`,`raid_lv`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

Comment

#8863 by iwamoto at 2020-12-23T17:06:22; updated 2020-12-23T17:06:22

@wada
こちらレビューをお願い致します。
新規テーブルが必要になりますので作成お願い致します。

Comment

#8880 by wada at 2020-12-24T12:28:26; updated 2020-12-24T12:28:26

@iwamoto
確認しました。OKです。

iwamoto merge at 2020-12-24T12:37:52: レイドモンスター戦闘後のダメージ表示追加
iwamoto close at 2020-12-24T12:37:52: Close

Commit range

baseb4141ea7e004bc73c48c086003acd26996074d86
headc5ef3d81f937704f64242d02725bec3c59f8516f
base branchjolly/jr-web:event_raid_5_2_486
head branchjolly/jr-web:fix_raid_battle_result_add_465

View commits

Commit details are loaded from Git when a dynamic archive server is running, or can be embedded with --include-commits.
Files changed18 filesView patch
statusfile
modifieddatabase/jrye.sql
modifiedlib/SubFunc.inc
modifiedlib/ajax/battle_player.inc
addedlib/public/Battle-ResultRaid.inc
modifiedlib/public/Raid-Battle.inc
modifiedlib/public/Raid-BattleVs.inc
addedpublic_html/img/battle/result/bg_raid.jpg
addedpublic_html/img/battle/result/defeated.png
addedpublic_html/img/battle/result/frame1_1.png
addedpublic_html/img/battle/result/frame1_2.png
addedpublic_html/img/battle/result/frame2.png
addedpublic_html/img/battle/result/hpguage_raid.png
addedpublic_html/img/battle/result/hpguagelv_raid.png
addedpublic_html/img/battle/result/num_battleresult.png
modifiedpublic_html/index.php
modifiedpublic_html/js/JOLLYROGER_battle.js
modifiedpublic_html/js/jr_battle.js
addedpublic_html/template/Battle-ResultRaid.tpl
Patch body is stored as a separate file to keep this page lightweight.