坂野杏梨/陰の実力者になりたくて! (14) (14) (2025)

  • 坂野杏梨/陰の実力者になりたくて! (14) (14) (2)

書籍

コミック

陰の実力者になりたくて! (14) (14)

坂野杏梨逢沢大介東西

★★★★★

★★★★★

0.0

カスタマーズボイスを見る

・こちらはフラゲ(発売日前日お届け)保証外の商品です

・各種前払い決済は、お支払い確認後の発送となります()

〈オンライン限定〉全品20%ポイント還元キャンペーン

開催期間:2024年10月23日(水)0:00~11月1日(金)23:59まで![※期間中のご予約・お取り寄せ・ご注文が対象 ※店舗取置・店舗予約サービス、マーケットプレイス商品は除く]

商品の情報

フォーマット

コミック

構成数

1

国内/輸入

国内

パッケージ仕様

-

発売日

2024年11月25日

規格品番

-

レーベル

KADOKAWA

ISBN

9784041155745

版型

B6

ページ数

144

商品の説明

異世界に転生し、あらゆる物事に陰から介入し
実力を示す「陰の実力者」設定をエンジョイしているシド。
前世で暮らしていた日本に飛ばされるが…「漆黒の騎士」として、魔獣ブルートゥルを倒す。
そして計画が整い、西野アカネを取り巻く日本での闘いが――。
重度の勘違いと比類なき強さで無双する、克服の第14巻!

作品の情報

メイン

著者

坂野杏梨

逢沢大介

原案

東西

収録内容

構成数 | 1枚

    • 1.

      [コミック]

カスタマーズボイス

    評価する:

ニュース & 記事

ポイント20倍

136pt

販売価格(税込)

¥ 748

取扱中

予約受付中

発売日以降のお届けになります

予約する

ご利用方法はこちら
ご利用方法はこちら

欲しい物リストに追加

'; html += '

'; html += '

' + value.wantlist_name + '

'; if (value.public_tp_yn == "y") { html += '

公開

'; } else { html += '

非公開

' } html += '

'; html += '

'; html += ''; }) // 入荷通知 if (arrivalNotice == 0) $("#arrivalNotice").hide(); else $("#arrivalNotice").show(); InfoLog("欲しい物リストポップアップ表示!"); $("#WantlistListList").html(html); $("#AddWantlistModal").modal({ showClose: false }); } } else { InfoLog("欲しい物リストが存在しないので1件新規作成する。"); MakeNewWantlistInner(); } }).catch(function (error) { // handle error WarnLog("欲しい物リスト一覧取得処理失敗。 " + error); }).finally(function () { // always executed InfoLog("欲しい物リスト一覧取得処理 END"); DisplayWantlistListFlg = false; }); }; var AddWantlistDetailProcesing = false; function AddWantlistDetail(id, flg, itemId, price) { InfoLog("欲しい物リスト商品追加処理 START。 欲しい物ID = " + id + ", バッジの表示フラグ = " + flg); InfoLog("商品ID = " + itemId + ", 価格 = " + price); if (!AddWantlistDetailProcesing) { AddWantlistDetailProcesing = true; var token = $('input[name="__RequestVerificationToken"]').val(); const params = new FormData(); params.append('__RequestVerificationToken', token); params.append('wantlistId', id); if (itemId == null) { params.append('itemId', 6624506); } else { params.append('itemId', itemId); } if (price == null) { params.append('itemPrice', 748); } else { params.append('itemPrice', price); } if ($('#checkArrivalNotice').prop('checked')) { params.append('arrivalNotice', 'y'); } else { params.append('arrivalNotice', 'n'); } axios.post('/ec/Wantlist/AddWantlistDetail', params, { withCredentials: true, timeout: 20000 }).then(function (response) { if (response.data == "OK") { InfoLog("欲しい物リスト商品追加、成功"); $("#WantlistListAddDone_" + id).show(); setTimeout(function () { $("#WantlistListAddDone_" + id).hide(); }, 3000); if ("iteminfo" == "iteminfo") { InfoLog("欲しい物リスト追加、バッジ更新"); var count = Number($("#WantlistAddBtn3").attr("data-badge")); if (isNaN(count)) { count = 0; } count++; $("#WantlistAddBtn3").attr("data-badge", count); } } else if (response.data == "DuplicationError") { WarnLog("欲しい物リスト商品追加、登録済エラー"); $("#PopupAlertW").html("登録済の商品です。"); $("#PopupAlertW").show(); $("#ItemInfoWantlistDuplicAlert").show(); setTimeout(function () { $("#PopupAlertW").hide(); $("#ItemInfoWantlistDuplicAlert").hide(); }, 2500); } else { $("#PopupAlertW").html("商品追加時にエラーが発生しました。"); $("#PopupAlertW").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); } }).catch(function (error) { // handle error WarnLog("欲しい物リスト商品追加処理失敗。 " + error); $("#PopupAlertW").html("商品追加時にエラーが発生しました。"); $("#PopupAlertW").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); return false; }).finally(function () { // always executed InfoLog("欲しい物リスト商品追加処理 END"); AddWantlistDetailProcesing = false; }); } }; var AddWantlistProcesing = false; function MakeNewWantlist() { InfoLog("欲しい物リスト追加処理 START"); $("#InputNewWantlistName").val(""); $('#WantlistNameInput').modal({ closeExisting: false, showClose: false }); InfoLog("欲しい物リスト追加処理 END"); }; function MakeNewWantlistInner(){ InfoLog("欲しい物リスト追加処理 「実」 START"); if (!AddWantlistProcesing) { AddWantlistProcesing = true; var token = $('input[name="__RequestVerificationToken"]').val(); const params = new FormData(); params.append('__RequestVerificationToken', token); params.append('newWantlistName', $("#InputNewWantlistName").val()); axios.post('/ec/Wantlist/AddWantlist', params, { withCredentials: true, timeout: 20000 }).then(function (response) { InfoLog("欲しい物リスト商品追加、成功。 欲しい物リストを再描画します。"); DisplayWantlistList(); }).catch(function (error) { // handle error WarnLog("欲しい物リスト追加処理失敗。 " + error); $("#PopupAlertW").html("欲しい物リスト追加時にエラーが発生しました。"); $("#PopupAlertW").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); }).finally(function () { // always executed InfoLog("欲しい物リスト追加処理 「実」 END"); AddWantlistProcesing = false; }); } };

坂野杏梨/陰の実力者になりたくて! (14) (14) (5)

コレクションに追加

'; html += '

'; html += '

' + value.collection_name + '

'; if (value.public_tp_yn == "y") { html += '

公開

'; } else { html += '

非公開

' } html += '

'; html += '

'; html += ''; }) InfoLog("コレクションポップアップ表示!"); $("#CollectionListList").html(html); $("#AddCollectionModal").modal({ showClose: false }); if ("iteminfo" == "wantlist") { $('#AddCollectionModal').on($.modal.CLOSE, function (event, modal) { onCloseCollection(); }); } else if ("iteminfo" == "orderdetail") { $('#AddCollectionModal').on($.modal.CLOSE, function (event, modal) { $('.canselExit').find('.blueTxt').click(); }); } } } else { InfoLog("欲しい物リストが存在しないので1件新規作成"); MakeNewCollectionInner(); } }).catch(function (error) { // handle error WarnLog("コレクションリスト一覧取得処理失敗。 " + error); }).finally(function () { // always executed InfoLog("コレクションリスト一覧取得処理 END"); }); }; var itemIds = [6624506]; var ColectionListAddFlg = false; function ColectionListAdd(id, flg) { InfoLog("コレクションアイテム追加処理START 商品ID = " + itemIds + ", バッジ表示フラグ = " + flg); var addItems = new Array(); for(let v of itemIds) { addItems.push(v); } if (!ColectionListAddFlg) { ColectionListAddFlg = true; var token = $('input[name="__RequestVerificationToken"]').val(); InfoLog("処理画面 = iteminfo"); $.ajax({ url: '/ec/Collection/AddCollectionItem', type: 'POST', data: { __RequestVerificationToken: token, collectionId: id, itemIds: addItems, isWantlist: "iteminfo" == "wantlist", releaseId : null }, timeout: 20000, traditional: true, xhrFields: { withCredentials: true }, }).done(function (data) { InfoLog("res = " + data); if (data = "OK") { $("#CollectionListAddDone_" + id).show(); setTimeout(function () { $("#CollectionListAddDone_" + id).hide(); }, 3000); if ("iteminfo" == "iteminfo") { var count = Number($("#CollectionAddBtn3").attr("data-badge")); if (isNaN(count)) { count = 0; } count++; $("#CollectionAddBtn3").attr("data-badge", count); if (count > 999) { $("#CollectionAddBtn3").addClass("add-Collection-item999"); } else if (count > 99) { $("#CollectionAddBtn3").addClass("add-Collection-item99"); } } if ("iteminfo" == "wantlist") { deleteWantlistItem(); } } else { WarnLog("コレクション追加処理失敗。 " + data); $("#PopupAlert").html("商品追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlert").hide(); }, 2500); } ColectionListAddFlg = false; }).fail(function (XMLHttpRequest, textStatus, errorThrown) { WarnLog("コレクションアイテム追加処理失敗 " + errorThrown); $("#PopupAlert").html("商品追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlert").hide(); }, 2500); ColectionListAddFlg = false; }) } }; MakeNewCollectionFlg = false; function MakeNewCollection() { InfoLog("コレクション追加処理 START"); $("#InputNewCollectionName").val(""); $('#CollectionNameInput').modal({ closeExisting: false, showClose: false }); InfoLog("コレクション追加処理 END"); }; function MakeNewCollectionInner() { InfoLog("コレクション追加処理 「実」 START"); if (!MakeNewCollectionFlg) { MakeNewCollectionFlg = true; $.modal.close(); InfoLog("新しいコレクションの名前 = " + $("#InputNewCollectionName").val()); var token = $('input[name="__RequestVerificationToken"]').val(); const params = new FormData(); params.append('__RequestVerificationToken', token); params.append('newCollectionName', $("#InputNewCollectionName").val()); axios.post('/ec/Collection/AddCollection', params, { withCredentials: true, timeout: 20000 }).then(function (response) { if (response.data == "OK") { DisplayCollectionList(); InfoLog("コレクションリスト追加成功"); } else { WarnLog("コレクション追加処理失敗。 " + response.data); $("#PopupAlert").html("コレクション追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); } }).catch(function (error) { // handle error WarnLog("コレクション追加処理失敗。 " + error); $("#PopupAlert").html("コレクション追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); }).finally(function () { // always executed InfoLog("コレクション追加処理 「実」 END"); MakeNewCollectionFlg = false; }); } };

坂野杏梨/陰の実力者になりたくて! (14) (14) (2025)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Wyatt Volkman LLD

Last Updated:

Views: 6768

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Wyatt Volkman LLD

Birthday: 1992-02-16

Address: Suite 851 78549 Lubowitz Well, Wardside, TX 98080-8615

Phone: +67618977178100

Job: Manufacturing Director

Hobby: Running, Mountaineering, Inline skating, Writing, Baton twirling, Computer programming, Stone skipping

Introduction: My name is Wyatt Volkman LLD, I am a handsome, rich, comfortable, lively, zealous, graceful, gifted person who loves writing and wants to share my knowledge and understanding with you.