|
4 | 4 | <meta charset="utf-8" /> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
6 | 6 |
|
7 | | - <title>食料アイテム | CustomItem make | マインクラフト専用環境 | SOCKET-MANAGER Framework For PHP</title> |
8 | | - <meta name="description" content="マインクラフト(統合版)での食料アイテムの作り方をご紹介します" /> |
9 | | - <meta content="アイテム,カスタムアドオンパック,マインクラフト,統合版,minecraft" name="keywords"> |
| 7 | + <title>食料アイテム | マインクラフト専用環境 | SOCKET-MANAGER Framework For PHP</title> |
| 8 | + <meta name="description" content="マインクラフト統合版での食料アイテムの作り方をご紹介!アイテムデータを「汎用ブロック」「アニメーション設定」「食料設定」の3つのパートに分けて解説。" /> |
| 9 | + <meta content="カスタムアイテム,カスタムアドオンパック,マインクラフト,統合版,minecraft,ソケットマネージャー" name="keywords"> |
| 10 | + <link rel="canonical" href="https://socket-manager.github.io/document/minecraft-contents/custom-item-food.html" /> |
10 | 11 |
|
11 | 12 | <script async src="https://www.googletagmanager.com/gtag/js?id=G-LF9W695NNW"></script> |
12 | 13 | <script> |
|
20 | 21 | <link type="text/css" rel="stylesheet" href="../css/common.css" media="all" /> |
21 | 22 | <script src="../js/jquery-3.7.1.min.js"></script> |
22 | 23 | <script type="text/javascript" src="../js/common.js"></script> |
| 24 | + <script type="application/ld+json"> |
| 25 | + { |
| 26 | + "@context": "https://schema.org", |
| 27 | + "@type": "TechArticle", |
| 28 | + "headline": "マインクラフトの食料アイテム作成ガイド", |
| 29 | + "description": "マインクラフト統合版での食料アイテムの作り方をご紹介!アイテムデータを「汎用ブロック」「アニメーション設定」「食料設定」の3つのパートに分けて解説。", |
| 30 | + "image": "https://socket-manager.github.io/document/minecraft-contents/img/custom-item-food/sanma.png", |
| 31 | + "articleSection": ["Game Development", "Technical Implementation"], |
| 32 | + "keywords": "minecraft,bedrock,カスタムアイテム,マインクラフト,統合版,食料アイテム", |
| 33 | + "author": { |
| 34 | + "@type": "Person", |
| 35 | + "name": "SOCKET-MANAGER開発チーム" |
| 36 | + }, |
| 37 | + "publisher": { |
| 38 | + "@type": "Organization", |
| 39 | + "name": "SOCKET-MANAGER", |
| 40 | + "logo": { |
| 41 | + "@type": "ImageObject", |
| 42 | + "url": "https://socket-manager.github.io/document/favicon.ico" |
| 43 | + } |
| 44 | + }, |
| 45 | + "mainEntityOfPage": { |
| 46 | + "@type": "WebPage", |
| 47 | + "@id": "https://socket-manager.github.io/document/minecraft-contents/custom-item-food.html" |
| 48 | + }, |
| 49 | + "breadcrumb": { |
| 50 | + "@type": "BreadcrumbList", |
| 51 | + "itemListElement": [{ |
| 52 | + "@type": "ListItem", |
| 53 | + "position": 1, |
| 54 | + "name": "Framework Top", |
| 55 | + "item": "https://socket-manager.github.io/document/" |
| 56 | + },{ |
| 57 | + "@type": "ListItem", |
| 58 | + "position": 2, |
| 59 | + "name": "マインクラフト専用環境", |
| 60 | + "item": "https://socket-manager.github.io/document/minecraft-contents/" |
| 61 | + },{ |
| 62 | + "@type": "ListItem", |
| 63 | + "position": 3, |
| 64 | + "name": "食料アイテム", |
| 65 | + "item": "https://socket-manager.github.io/document/minecraft-contents/custom-item-food.html" |
| 66 | + }] |
| 67 | + } |
| 68 | + } |
| 69 | + </script> |
23 | 70 | </head> |
24 | 71 | <body> |
25 | 72 | <div class="layout"> |
@@ -205,13 +252,13 @@ <h2 class="subtitle">定義ファイルの内容</h2> |
205 | 252 | 釜戸などで焼いて食べる事を可能にするため「生さんま」と「焼きさんま」をセットで作成しています。<br /><br /> |
206 | 253 |
|
207 | 254 | ・生さんま(customize:sanma)<br /> |
208 | | - <img src="./img/custom-item-food/sanma.png" /><br /><br /> |
| 255 | + <img src="./img/custom-item-food/sanma.png" width="216px" fetchpriority="high" loading="eager" alt="アイテムスロット上の「生さんま」のアイコン" /><br /><br /> |
209 | 256 |
|
210 | 257 | ・焼きさんま(customize:cooked_sanma)<br /> |
211 | | - <img src="./img/custom-item-food/cooked_sanma.png" /><br /><br /> |
| 258 | + <img src="./img/custom-item-food/cooked_sanma.png" width="238px" loading="lazy" alt="アイテムスロット上の「焼きさんま」のアイコン" /><br /><br /> |
212 | 259 |
|
213 | 260 | <span><ビヘイビアパック>/items/sanma.json(生さんま)</span> |
214 | | - <pre> |
| 261 | + <pre aria-label="<ビヘイビアパック>/items/sanma.json(生さんま)"> |
215 | 262 | { |
216 | 263 | "format_version": "1.20.50", |
217 | 264 | "minecraft:item": { |
@@ -255,7 +302,7 @@ <h2 class="subtitle">定義ファイルの内容</h2> |
255 | 302 | </pre> |
256 | 303 |
|
257 | 304 | <span><ビヘイビアパック>/items/cooked_sanma.json(焼きさんま)</span> |
258 | | - <pre> |
| 305 | + <pre aria-label="<ビヘイビアパック>/items/cooked_sanma.json(焼きさんま)"> |
259 | 306 | { |
260 | 307 | "format_version": "1.20.50", |
261 | 308 | "minecraft:item": { |
@@ -408,7 +455,7 @@ <h2 class="subtitle">多言語設定</h2> |
408 | 455 | カスタムエンティティの場合と同様に以下のファイルでアイテム名を定義しています。<br /> |
409 | 456 |
|
410 | 457 | <span><リソースパック>/texts/en_US.lang</span> |
411 | | - <pre> |
| 458 | + <pre aria-label="<リソースパック>/texts/en_US.lang"> |
412 | 459 | item.customize:sanma.name=生さんま |
413 | 460 | item.customize:cooked_sanma.name=焼きさんま |
414 | 461 | </pre><br /> |
|
0 commit comments