commit 9b2da31504581b996f127d5507810738eced51eb Author: Rui Date: Sat Dec 2 19:04:52 2017 +0900 最初のコミット diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..1e3f643 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,116 @@ +# コントリビュート + +コントリビュート方法及びガイドラインです。 + +- [commit方法について](#commit方法について) +- [Markdownの構文について](#markdownの構文について) +- [目次の追加](#目次の追加) +- [ページ更新日について](#ページ更新日について) +- [YAML Front Matterで利用できる独自のパラメータについて](#yaml-front-matterで利用できる独自のパラメータについて) +- [Modリスト/ツールリスト/テクスチャパック/サブゲーム/配布マップの追加方法について](#modリストツールリストテクスチャパックサブゲーム配布マップの追加方法について) +- [修正の提案、TODOについて](#修正の提案todoについて) +- [紹介する動画について](#紹介する動画について) + + +## commit方法について + +Forkしたリポジトリからpull requestを行ってください。 + +[minetest-jp](https://github.com/minetest-jp)のメンバーであれば直接commitすることも可能です。 + +## Markdownの構文について + +基本的には通常のMarkdown構文が使用できます。 + +ただし、以下のような違いがあります。 + +- Markdownの改行はHTMLの改行コード(`
`)に変換されます。 + - GithubのMarkdownと違い、空白行を入れなくても改行可能です。 + - (Github上では正しく表示されない場合があります) + +## 目次の追加 + +``` +- toc +{:toc} +``` +目次を追加する場合は以上のコードを挿入してください。 + +## ページ更新日について + +ページ更新の際はYAML Front Matterにdate(更新日)を書いていただけるとありがたいです。 +YAML Front Matterで利用できる独自パラメータについては後述します。 + +## YAML Front Matterで利用できる独自のパラメータについて + +
+
date
+  
更新日時です。20XX-XX-XXのように記述します。
+ +
custom-style
+  
追加のCSSです。そのページでのみ使用されるCSSはここに記述します。
+ +
custom-head
+  
追加のヘッダです。そのページでのみ使用されるscriptタグなどはここに記述します。
+
+ +## Modリスト/ツールリスト/テクスチャパック/サブゲーム/配布マップの追加方法について + +`_data`内にあるページ名と同名のフォルダにymlファイルを追加します。また、スクリーンショットも`images`内の同名フォルダに追加します。 +ファイル名がソートに使用されます。ファイル名にハイフンは使用できません。 + +書式は以下のとおりです。 +```yml +# 名前 +name: "Hogehoge Mod" + +# 作者名 +author: "hogehoger" + +# スクリーンショットのパス +# imagesフォルダからのパスを指定します。 +screenshot: "/mods-decor/hogehoge.png" + +# プラットフォーム名 (ツールのみ使用可能) +platform: "Windows / Linux" + +# 説明文 +# HTMLコードも使用できます。 +description: "hogehogeを追加するMod。" + +# 関連リンクリスト +# フォーラムへのリンクやダウンロードリンクなど。 +links: + - +    text: "フォーラム" + url: "https://forum.minetest.net" + - + text: "ダウンロード" + url: "https://github.com/" + +# 依存Modリスト (Modのみ使用可能) +depends: + - + text: "TU-KA Mod" +    url: "mods-decor#tu_ka" # もちろんWiki内へのリンクも使用可能です。 +  - + text: "FooBarMod" + url: "https://forum.minetest.net" + +# 連携可能/対応Modリスト (Modのみ使用可能) +depends_optional: + - +    text: "Piyopiyo Mod" +    url: "mods-decor#piyopiyo" +  - + text: "42" + url: "https://forum.minetest.net" +``` + +## 修正の提案、TODOについて + +GithubのProjectsにあるTODOリストに追加していただけるとありがたいです。 + +## 紹介する動画について + +動画紹介に載せる動画は許可を取ったもののみでお願いいたします。 diff --git a/README.md b/README.md new file mode 100644 index 0000000..6c073e4 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Minetest JP Wiki + +オープンソースのサンドボックスゲーム[Minetest](https://www.minetest.net)の日本語Wikiです。 + +このリポジトリのMarkdownファイルを編集すると自動的にWikiへ反映されます。 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..7f98f5f --- /dev/null +++ b/_config.yml @@ -0,0 +1,73 @@ +### Minetest関連 ### + +# Wiki内で使用 +minetest: + # Minetestの最新バージョン + # Windowsのダウンロードリンクもこれに依存します + latest_version: "0.4.16" + +### Wiki設定 ### + +wiki: + # Wikiのタイトル + title: "Minetest JP Wiki" + # 画像フォルダのパス + images_dir: "images" + +### レイアウト関連 ### + +# デスクトップ判定 +media-desktop: "(min-width: 768px)" +# モバイル端末判定 +media-mobile: "(max-width: 767px)" + +### Jekyll設定 ### + +# ページ用Markdownのパス +source: "wiki" +# Markdownパーサ +markdown: "kramdown" +# Jekyllから除外するファイル +exclude: ["README.md", "CONTRIBUTING.md", "images/license.txt"] + +### ページのデフォルト設定 ### + +defaults: + - + # 設定を適用するパス + scope: + path: "wiki" + values: + # レイアウト名 + layout: "default" + # ページのURL + # Markdown名をそのまま使用 + permalink: ":basename" + +### SASS(SCSS)設定 ### + +sass: + # CSS生成スタイル + # 圧縮する + style: "compressed" + +### Kramdownの設定 ### + +kramdown: + # Markdownの書式 + # Githubスタイルの書式を設定 + input: "GFM" + # 改行するために空行を入れなくても良いようにする + gfm_quirks: "paragraph_end" + # Markdownの改行を
に変換する + hard_wrap: true + # HTMLコードをそのまま出力 + html_to_native: true + # "#"を

相当にする + header_offset: 1 + +### gem ### + +gems: + # サイトマップ生成 + - jekyll-sitemap diff --git a/_data/mods-decor/cactus_plus.yml b/_data/mods-decor/cactus_plus.yml new file mode 100644 index 0000000..491ccb1 --- /dev/null +++ b/_data/mods-decor/cactus_plus.yml @@ -0,0 +1,11 @@ +name: "Cactus Mod" +author: "AndroidNo32" +screenshot: "/mods-decor/cactus_plus.png" +description: "サボテン製のブロックとツールを追加するMod。" +links: + - + text: "ブログ" + url: "http://minetest-mod-list-youtube.blogspot.com.br" + - + text: "ダウンロード" + url: "https://www.dropbox.com/s/7r4hwgz0h8x1q1l/Cactus_CactusPlusVer0103.zip?dl=1" diff --git a/_data/mods-decor/carpets.yml b/_data/mods-decor/carpets.yml new file mode 100644 index 0000000..47c19e1 --- /dev/null +++ b/_data/mods-decor/carpets.yml @@ -0,0 +1,11 @@ +name: "Carpets" +author: "bell07" +screenshot: "/mods-decor/carpets.png" +description: "カーペットを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=15459" + - + text: "ダウンロード" + url: "https://github.com/bell07/minetest-carpets/archive/master.zip" diff --git a/_data/mods-decor/ceramic.yml b/_data/mods-decor/ceramic.yml new file mode 100644 index 0000000..b703679 --- /dev/null +++ b/_data/mods-decor/ceramic.yml @@ -0,0 +1,11 @@ +name: "Ceramic Mod" +author: "AndroidNo32" +screenshot: "/mods-decor/ceramic.png" +description: "セラミック製のツールやブロックを追加するMod。" +links: + - + text: "ブログ" + url: "http://minetest-mod-list-youtube.blogspot.com.br/" + - + text: "ダウンロード" + url: "https://www.dropbox.com/s/x3xwiminqv1phqe/Ceramic_V0107.zip?dl=1" diff --git a/_data/mods-decor/colormachine.yml b/_data/mods-decor/colormachine.yml new file mode 100644 index 0000000..15fbe46 --- /dev/null +++ b/_data/mods-decor/colormachine.yml @@ -0,0 +1,11 @@ +name: "Spray Booth / Color Machine" +author: "Sokomine" +screenshot: "/mods-decor/colormachine.png" +description: "ブロックを染色するMod。多くのブロックに対応している。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=6670" + - + text: "ダウンロード" + url: "https://github.com/Sokomine/colormachine/archive/master.zip" diff --git a/_data/mods-decor/comp_stone.yml b/_data/mods-decor/comp_stone.yml new file mode 100644 index 0000000..6aea57c --- /dev/null +++ b/_data/mods-decor/comp_stone.yml @@ -0,0 +1,11 @@ +name: "Compressed Stone" +author: "AndroidNo32" +screenshot: "/mods-decor/comp_stone.png" +description: "丸石を圧縮するMod。" +links: + - + text: "ブログ" + url: "http://minetest-mod-list-youtube.blogspot.com.br/" + - + text: "ダウンロード" + url: "https://www.dropbox.com/s/yumjx91vtg5oetn/CompStoneV0201.zip?dl=1" diff --git a/_data/mods-decor/foodblock.yml b/_data/mods-decor/foodblock.yml new file mode 100644 index 0000000..2a13751 --- /dev/null +++ b/_data/mods-decor/foodblock.yml @@ -0,0 +1,11 @@ +name: "Food Blocks" +author: "ういんど" +screenshot: "/mods-decor/foodblock.png" +description: "食べ物のブロックを追加するMod。多くのModの食べ物に対応している。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12911" + - + text: "ダウンロード" + url: "http://ux.getuploader.com/minetest_jp_mod/download/56/foodblock150912.zip" diff --git a/_data/mods-decor/homedecor.yml b/_data/mods-decor/homedecor.yml new file mode 100644 index 0000000..dcf49c1 --- /dev/null +++ b/_data/mods-decor/homedecor.yml @@ -0,0 +1,11 @@ +name: "Home Decor" +author: "VanessaE" +screenshot: "/mods-decor/homedecor.png" +description: "家具などの装飾用のブロックを追加するModパック。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2041" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/homedecor_modpack/archive/master.zip" diff --git a/_data/mods-decor/ilights.yml b/_data/mods-decor/ilights.yml new file mode 100644 index 0000000..eeb32a0 --- /dev/null +++ b/_data/mods-decor/ilights.yml @@ -0,0 +1,11 @@ +name: "Industrial Lights" +author: "VanessaE" +screenshot: "/mods-decor/ilights.png" +description: "多色のランプを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12200" + - + text: "ダウンロード" + url: "https://github.com/VanessaE/ilights/archive/master.zip" diff --git a/_data/mods-decor/moreblocks.yml b/_data/mods-decor/moreblocks.yml new file mode 100644 index 0000000..ba3b3cf --- /dev/null +++ b/_data/mods-decor/moreblocks.yml @@ -0,0 +1,11 @@ +name: "More Blocks" +author: "Calinou" +screenshot: "/mods-decor/moreblocks.png" +description: "装飾用のブロックを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=509" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/moreblocks/archive/master.zip" diff --git a/_data/mods-decor/streets.yml b/_data/mods-decor/streets.yml new file mode 100644 index 0000000..1ffe4f2 --- /dev/null +++ b/_data/mods-decor/streets.yml @@ -0,0 +1,11 @@ +name: "StreetsMod" +author: "webdesigner97" +screenshot: "/mods-decor/streets.png" +description: "交通関係のブロックを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2984" + - + text: "ダウンロード" + url: "https://github.com/minetest-streets/streets/archive/master.zip" diff --git a/_data/mods-decor/tables.yml b/_data/mods-decor/tables.yml new file mode 100644 index 0000000..b0721a2 --- /dev/null +++ b/_data/mods-decor/tables.yml @@ -0,0 +1,11 @@ +name: "Tables" +author: "lisacvuk" +screenshot: "/mods-decor/tables.png" +description: "テーブルを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=10556" + - + text: "ダウンロード" + url: "https://github.com/lisacvuk/Minetest-Tables/archive/master.zip" diff --git a/_data/mods-decor/travelnet.yml b/_data/mods-decor/travelnet.yml new file mode 100644 index 0000000..3b6b2fc --- /dev/null +++ b/_data/mods-decor/travelnet.yml @@ -0,0 +1,11 @@ +name: "travelnet teleporters/bookmarks" +author: "Sokomine" +screenshot: "/mods-decor/travelnet.png" +description: "エレベーターを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=4877" + - + text: "ダウンロード" + url: "https://github.com/Sokomine/travelnet/archive/master.zip" diff --git a/_data/mods-decor/xdecor.yml b/_data/mods-decor/xdecor.yml new file mode 100644 index 0000000..c3bf033 --- /dev/null +++ b/_data/mods-decor/xdecor.yml @@ -0,0 +1,11 @@ +name: "X-Decor" +author: "jp" +screenshot: "/mods-decor/xdecor.png" +description: "装飾用のブロックを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12534" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/xdecor/archive/master.zip" diff --git a/_data/mods-farming/farming_redo.yml b/_data/mods-farming/farming_redo.yml new file mode 100644 index 0000000..402758e --- /dev/null +++ b/_data/mods-farming/farming_redo.yml @@ -0,0 +1,11 @@ +name: "Farming Redo" +author: "TenPlus1" +screenshot: "/mods-farming/farming_redo.png" +description: "作物と料理を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9019" + - + text: "ダウンロード" + url: "https://github.com/tenplus1/farming/archive/master.zip" diff --git a/_data/mods-food/barbeque.yml b/_data/mods-food/barbeque.yml new file mode 100644 index 0000000..a220674 --- /dev/null +++ b/_data/mods-food/barbeque.yml @@ -0,0 +1,11 @@ +name: "Barbecue" +author: "ういんど" +screenshot: "/mods-food/barbeque.png" +description: "バーベキュー・鍋料理を追加するMod。焚火の近くに素材を設置することで調理できる。焼き過ぎると焦げてしまうので注意。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=13053" + - + text: "ダウンロード" + url: "http://ux.getuploader.com/minetest_jp_mod/download/44/barbecue150824.zip" diff --git a/_data/mods-food/food.yml b/_data/mods-food/food.yml new file mode 100644 index 0000000..15349cd --- /dev/null +++ b/_data/mods-food/food.yml @@ -0,0 +1,11 @@ +name: "Food" +author: "rubenwardy" +screenshot: "/mods-food/food.png" +description: "大量の食べ物を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2960" + - + text: "ダウンロード" + url: "https://github.com/rubenwardy/food/archive/master.zip" diff --git a/_data/mods-industry/digilines.yml b/_data/mods-industry/digilines.yml new file mode 100644 index 0000000..ec39d0c --- /dev/null +++ b/_data/mods-industry/digilines.yml @@ -0,0 +1,11 @@ +name: "Digilines" +author: "Jeija" +screenshot: "/mods-industry/digilines.png" +description: "ノード間で通信を行うためのMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=5263" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/digilines/archive/master.zip" diff --git a/_data/mods-industry/mesecons.yml b/_data/mods-industry/mesecons.yml new file mode 100644 index 0000000..13d2d4e --- /dev/null +++ b/_data/mods-industry/mesecons.yml @@ -0,0 +1,14 @@ +name: "Mesecons" +author: "Jeija" +screenshot: "/mods-industry/mesecons.png" +description: "回路を組めるMod。レッドストーンの代替。" +links: + - + text: "公式サイト" + url: "http://mesecons.net/" + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=628" + - + text: "ダウンロード" + url: "https://github.com/Jeija/minetest-mod-mesecons/archive/master.zip" diff --git a/_data/mods-industry/pipeworks.yml b/_data/mods-industry/pipeworks.yml new file mode 100644 index 0000000..851fbaa --- /dev/null +++ b/_data/mods-industry/pipeworks.yml @@ -0,0 +1,24 @@ +name: "Pipeworks" +author: "VanessaE" +screenshot: "/mods-industry/pipeworks.png" +description: "アイテムや水を輸送するためのパイプを追加するMod。" +links: + - + text: "公式Wiki" + url: "https://github.com/minetest-mods/pipeworks/wiki" + - + text: "解説ページ" + url: "mod-manual-pipeworks" + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2155" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/pipeworks/archive/master.zip" +depends-optional: + - + text: "Mesecons" + url: "mods-industry#mesecons" + - + text: "Digilines" + url: "mods-industry#digilines" diff --git a/_data/mods-industry/tech_add.yml b/_data/mods-industry/tech_add.yml new file mode 100644 index 0000000..cffe908 --- /dev/null +++ b/_data/mods-industry/tech_add.yml @@ -0,0 +1,18 @@ +name: "Technic Addon" +author: "ういんど" +screenshot: "/mods-industry/tech_add.png" +description: "Technicの拡張Mod。TechnicとMeseconsを連携させる機械が追加される。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=13225" + - + text: "ダウンロード" + url: "https://forum.minetest.net/download/file.php?id=3732" +depends: + - + text: "Technic" + url: "mods-industry#technic" + - + text: "Mesecons" + url: "mods-industry#mesecons" diff --git a/_data/mods-industry/technic.yml b/_data/mods-industry/technic.yml new file mode 100644 index 0000000..8837d8a --- /dev/null +++ b/_data/mods-industry/technic.yml @@ -0,0 +1,31 @@ +name: "Technic" +author: "RealBadAngel" +screenshot: "/mods-industry/technic.png" +description: "大量の素材と機械を追加するMod。電力(EU)を使って自動化ができる。" +links: + - + text: "レシピ一覧" + url: "http://technic.kosyak.info/" + - + text: "解説ページ" + url: "mod-manual-technic" + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2538" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/technic/archive/master.zip" +depends: + - + text: "More Blocks" + url: "mods-decor#moreblocks" + - + text: "Pipeworks" + url: "mods-industry#pipeworks" +depends-optional: + - + text: "More Ores" + url: "mods-mapgen#moreores" + - + text: "Mesecons" + url: "mods-industry#mesecons" diff --git a/_data/mods-mapgen/bedrock.yml b/_data/mods-mapgen/bedrock.yml new file mode 100644 index 0000000..73bb4d2 --- /dev/null +++ b/_data/mods-mapgen/bedrock.yml @@ -0,0 +1,11 @@ +name: "Bedrock" +author: "Calinou" +screenshot: "/mods-mapgen/bedrock.png" +description: "破壊できない岩盤を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9231" + - + text: "ダウンロード" + url: "https://dl.dropboxusercontent.com/u/82342922/minetest/carbone-mods/bedrock.zip" diff --git a/_data/mods-mapgen/bedrock2.yml b/_data/mods-mapgen/bedrock2.yml new file mode 100644 index 0000000..ca63820 --- /dev/null +++ b/_data/mods-mapgen/bedrock2.yml @@ -0,0 +1,11 @@ +name: "Indestructible Bedrock Layer" +author: "Wuzzy" +screenshot: "/mods-mapgen/bedrock2.png" +description: "平らな岩盤を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=11271" + - + text: "ダウンロード" + url: "http://repo.or.cz/w/minetest_bedrock2.git/snapshot/master.zip" diff --git a/_data/mods-mapgen/biome_lib.yml b/_data/mods-mapgen/biome_lib.yml new file mode 100644 index 0000000..149b684 --- /dev/null +++ b/_data/mods-mapgen/biome_lib.yml @@ -0,0 +1,10 @@ +name: "Biome library" +author: "VanessaE" +description: "主にVanessaE氏によるマップ生成関連のModに使用されるライブラリ。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12999" + - + text: "ダウンロード" + url: "https://github.com/VanessaE/biome_lib/archive/master.zip" diff --git a/_data/mods-mapgen/ethereal_ng.yml b/_data/mods-mapgen/ethereal_ng.yml new file mode 100644 index 0000000..97476d4 --- /dev/null +++ b/_data/mods-mapgen/ethereal_ng.yml @@ -0,0 +1,11 @@ +name: "Ethereal NG" +author: "TenPlus1" +screenshot: "/mods-mapgen/ethereal_ng.png" +description: "バイオームやアイテム、植物などが追加される複合的なMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=14638" + - + text: "ダウンロード" + url: "https://github.com/tenplus1/ethereal/archive/master.zip" diff --git a/_data/mods-mapgen/moreores.yml b/_data/mods-mapgen/moreores.yml new file mode 100644 index 0000000..178736d --- /dev/null +++ b/_data/mods-mapgen/moreores.yml @@ -0,0 +1,11 @@ +name: "More Ores" +author: "Calinou" +screenshot: "/mods-mapgen/moreores.png" +description: "鉱石を追加するMod。剣や斧、レールなども追加される。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=549" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/moreores/archive/master.zip" diff --git a/_data/mods-mapgen/moretrees.yml b/_data/mods-mapgen/moretrees.yml new file mode 100644 index 0000000..4ae9352 --- /dev/null +++ b/_data/mods-mapgen/moretrees.yml @@ -0,0 +1,23 @@ +# TODO: Vines and RopeをWikiに追加 +name: "More Trees!" +author: "VanessaE" +screenshot: "/mods-mapgen/moretrees.png" +description: "様々な木を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=4394" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/moretrees/archive/master.zip" +depends: + - + text: "Biome library" + url: "mods-mapgen#biome_lib" +depends-optional: + - + text: "More Blocks" + url: "mods-decor#moreblocks" + - + text: "Vines and Rope" + url: "https://forum.minetest.net/viewtopic.php?id=2344" diff --git a/_data/mods-mapgen/nether.yml b/_data/mods-mapgen/nether.yml new file mode 100644 index 0000000..aa98187 --- /dev/null +++ b/_data/mods-mapgen/nether.yml @@ -0,0 +1,11 @@ +name: "Nether (PilzAdam)" +author: "PilzAdam" +screenshot: "/mods-mapgen/nether.png" +description: "ネザーを追加するMod。ネザーポータルを作成して行き来する。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=5790" + - + text: "ダウンロード" + url: "https://github.com/PilzAdam/nether/archive/voxelmanip.zip" diff --git a/_data/mods-mapgen/nether_hybriddog.yml b/_data/mods-mapgen/nether_hybriddog.yml new file mode 100644 index 0000000..94d87c3 --- /dev/null +++ b/_data/mods-mapgen/nether_hybriddog.yml @@ -0,0 +1,18 @@ +name: "Nether (Hybrid Dog)" +author: "Hybrid Dog" +screenshot: "/mods-mapgen/nether_hybriddog.png" +description: "ネザーを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=10265" + - + text: "ダウンロード" + url: "https://github.com/HybridDog/minetest-nether/archive/master.zip" +depends: + - + text: "Glow" + url: "https://github.com/HybridDog/minetest-glow/archive/master.zip" + - + text: "Giant Mushroom/ Mushrooms" + url: "https://github.com/HybridDog/riesenpilz/archive/master.zip" diff --git a/_data/mods-mapgen/oresplus.yml b/_data/mods-mapgen/oresplus.yml new file mode 100644 index 0000000..f34175e --- /dev/null +++ b/_data/mods-mapgen/oresplus.yml @@ -0,0 +1,11 @@ +name: "Ores Plus" +author: "jp" +screenshot: "/mods-mapgen/oresplus.png" +description: "岩盤、エメラルド、グロウストーン、黄金のりんごを追加する。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=13120" + - + text: "ダウンロード" + url: "https://forum.minetest.net/download/file.php?id=3579" diff --git a/_data/mods-mapgen/plantlife.yml b/_data/mods-mapgen/plantlife.yml new file mode 100644 index 0000000..16428f3 --- /dev/null +++ b/_data/mods-mapgen/plantlife.yml @@ -0,0 +1,15 @@ +name: "Plantlife" +author: "VanessaE" +screenshot: "/mods-mapgen/plantlife.png" +description: "自然豊かなバイオームと多くの草木を追加する。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=3898" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/plantlife_modpack/archive/master.zip" +depends: + - + text: "Biome library" + url: "mods-mapgen#biome_lib" diff --git a/_data/mods-mapgen/quartz.yml b/_data/mods-mapgen/quartz.yml new file mode 100644 index 0000000..5abe599 --- /dev/null +++ b/_data/mods-mapgen/quartz.yml @@ -0,0 +1,11 @@ +name: "Quartz" +author: "Evergreen" +screenshot: "/mods-mapgen/quartz.png" +description: "水晶を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=5682" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/quartz/archive/master.zip" diff --git a/_data/mods-mob/mob_horse.yml b/_data/mods-mob/mob_horse.yml new file mode 100644 index 0000000..92349da --- /dev/null +++ b/_data/mods-mob/mob_horse.yml @@ -0,0 +1,14 @@ +name: "Horses" +author: "TenPlus1" +description: "Mob RedoのAPIを通して馬を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9917" + - + text: "ダウンロード" + url: "https://github.com/tenplus1/mob_horse/archive/master.zip" +depends: + - + text: "Mobs Redo" + url: "mods-mob#mobs_redo" diff --git a/_data/mods-mob/mobs_animal.yml b/_data/mods-mob/mobs_animal.yml new file mode 100644 index 0000000..889cf22 --- /dev/null +++ b/_data/mods-mob/mobs_animal.yml @@ -0,0 +1,14 @@ +name: "Animal Mobs" +author: "TenPlus1" +description: "Mob RedoのAPIを通して動物を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9917" + - + text: "ダウンロード" + url: "https://github.com/tenplus1/mobs_animal/archive/master.zip" +depends: + - + text: "Mobs Redo" + url: "mods-mob#mobs_redo" diff --git a/_data/mods-mob/mobs_monster.yml b/_data/mods-mob/mobs_monster.yml new file mode 100644 index 0000000..0003558 --- /dev/null +++ b/_data/mods-mob/mobs_monster.yml @@ -0,0 +1,14 @@ +name: "Monster Mobs" +author: "TenPlus1" +description: "Mob RedoのAPIを通してモンスターを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9917" + - + text: "ダウンロード" + url: "https://github.com/tenplus1/mobs_monster/archive/master.zip" +depends: + - + text: "Mobs Redo" + url: "mods-mob#mobs_redo" diff --git a/_data/mods-mob/mobs_npc.yml b/_data/mods-mob/mobs_npc.yml new file mode 100644 index 0000000..20041c9 --- /dev/null +++ b/_data/mods-mob/mobs_npc.yml @@ -0,0 +1,14 @@ +name: "NPC Mobs" +author: "TenPlus1" +description: "Mob RedoのAPIを通してNPCを追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9917" + - + text: "ダウンロード" + url: "https://github.com/tenplus1/mobs_npc/archive/master.zip" +depends: + - + text: "Mobs Redo" + url: "mods-mob#mobs_redo" diff --git a/_data/mods-mob/mobs_redo.yml b/_data/mods-mob/mobs_redo.yml new file mode 100644 index 0000000..a05bfa0 --- /dev/null +++ b/_data/mods-mob/mobs_redo.yml @@ -0,0 +1,18 @@ +name: "Mobs Redo" +author: "TenPlus1" +screenshot: "/mods-mob/mobs_redo.png" +description: "Mobを追加するためのAPIを提供するMod。Mobを追加するには、このAPIを利用する他のModが必要となる。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9917" + - + text: "ダウンロード" + url: "https://github.com/tenplus1/mobs_redo/archive/master.zip" +depends_optional: + - + text: "invisibility" + - + text: "intllib" + - + text: "lucky_block" diff --git a/_data/mods-mob/mobtalker.yml b/_data/mods-mob/mobtalker.yml new file mode 100644 index 0000000..e1e3f0a --- /dev/null +++ b/_data/mods-mob/mobtalker.yml @@ -0,0 +1,11 @@ +name: "Mob Talker" +author: "Rui" +screenshot: "/mods-mob/mobtalker.png" +description: "Mobにギャルゲー風のインターフェイスを追加するModpack。MinecraftのMob Talkerのバージョン1とほぼ同じ構文が使用できる。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12073" + - + text: "ダウンロード" + url: "https://github.com/Rui-Minetest/mobtalker_modpack/archive/master.zip" diff --git a/_data/mods-other/areas.yml b/_data/mods-other/areas.yml new file mode 100644 index 0000000..e076cd9 --- /dev/null +++ b/_data/mods-other/areas.yml @@ -0,0 +1,10 @@ +name: "Advanced area protection" +author: "ShadowNinja" +description: "指定した領域を他のプレイヤーから保護するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=7239" + - + text: "ダウンロード" + url: "https://github.com/ShadowNinja/areas/archive/master.zip" diff --git a/_data/mods-other/awards.yml b/_data/mods-other/awards.yml new file mode 100644 index 0000000..7f82658 --- /dev/null +++ b/_data/mods-other/awards.yml @@ -0,0 +1,11 @@ +name: "Archivements" +author: "rubenwardy" +screenshot: "/mods-other/awards.png" +description: "実績機能を追加するMod。達成状況はawardsコマンドで確認できる。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=4870" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/awards/archive/master.zip" diff --git a/_data/mods-other/digall.yml b/_data/mods-other/digall.yml new file mode 100644 index 0000000..c3e3a4e --- /dev/null +++ b/_data/mods-other/digall.yml @@ -0,0 +1,10 @@ +name: "DigAll" +author: "Yakisoba-PanTARO" +description: "ブロックを一括破壊するMod。範囲指定や破壊アルゴリズムの変更も可能。" +links: + - + text: "解説記事" + url: "http://yspn-tbx2.hatenablog.com/entry/2015/08/07/064520" + - + text: "ダウンロード" + url: "https://github.com/Yakisoba-PanTARO/digall/archive/master.zip" diff --git a/_data/mods-other/digall_gui.yml b/_data/mods-other/digall_gui.yml new file mode 100644 index 0000000..fd9dc5d --- /dev/null +++ b/_data/mods-other/digall_gui.yml @@ -0,0 +1,14 @@ +name: "DigAll" +author: "Rui" +description: "DigAllの拡張Mod。DigAllの設定メニューを追加する。" +links: + - + text: "解説記事" + url: "http://yspn-tbx2.hatenablog.com/entry/2015/08/07/064520" + - + text: "ダウンロード" + url: "https://github.com/Rui-Minetest/digall_gui/archive/master.zip" +depends: + - + text: "DigAll" + url: "mods-other#digall" diff --git a/_data/mods-other/digall_plus.yml b/_data/mods-other/digall_plus.yml new file mode 100644 index 0000000..7644a46 --- /dev/null +++ b/_data/mods-other/digall_plus.yml @@ -0,0 +1,14 @@ +name: "DigAll Plus" +author: "Yakisoba-PanTARO" +description: "DigAllの拡張Mod。ブロックを掘るアルゴリズムを追加する。" +links: + - + text: "解説記事" + url: "http://yspn-tbx2.hatenablog.com/entry/2015/08/07/064520" + - + text: "ダウンロード" + url: "https://github.com/Yakisoba-PanTARO/digall_plus/archive/master.zip" +depends: + - + text: "DigAll" + url: "mods-other#digall" diff --git a/_data/mods-other/hud_hunger.yml b/_data/mods-other/hud_hunger.yml new file mode 100644 index 0000000..f24688a --- /dev/null +++ b/_data/mods-other/hud_hunger.yml @@ -0,0 +1,14 @@ +name: "Better HUD" +author: "BlockMen" +screenshot: "/mods-other/hud_hunger.png" +description: >- + 満腹度と耐久度を表示するMod。食べ物を食べた時、HPが直接回復するのではなく満腹度が回復する。
+ 満腹度が最大になると自動でHPが回復する。一方、満腹度が0になると空腹でダメージを受ける。
+ 3D Armorの耐久度を表示することもできる。何らかの食べ物を得られるModとの併用を推奨。 +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=6342" + - + text: "ダウンロード" + url: "https://github.com/BlockMen/hud_hunger/releases/download/2.x.1/hud_hunger-2_x_1-BlockMen.zip" diff --git a/_data/mods-other/intllib.yml b/_data/mods-other/intllib.yml new file mode 100644 index 0000000..93a78aa --- /dev/null +++ b/_data/mods-other/intllib.yml @@ -0,0 +1,10 @@ +name: "Internationalization Library" +author: "kaeza" +description: "Modの文字列を翻訳するためのライブラリ。Mod側が対応している必要がある。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=4929" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/intllib/archive/master.zip" diff --git a/_data/mods-other/item_drop.yml b/_data/mods-other/item_drop.yml new file mode 100644 index 0000000..ef21a1d --- /dev/null +++ b/_data/mods-other/item_drop.yml @@ -0,0 +1,10 @@ +name: "Minecraft like item drop/pick up" +author: "PilzAdam" +description: "破壊したブロックがその場に落ちるようになり、落ちているアイテムに近づくと回収できるようになるMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2656" + - + text: "ダウンロード" + url: "https://github.com/PilzAdam/item_drop/archive/master.zip" diff --git a/_data/mods-other/playeranim.yml b/_data/mods-other/playeranim.yml new file mode 100644 index 0000000..ca0b826 --- /dev/null +++ b/_data/mods-other/playeranim.yml @@ -0,0 +1,11 @@ +name: "Bone-Based Animation" +author: "Rui" +screenshot: "/mods-other/playeranim.png" +description: "プレイヤーの顔が目線に合わせて動くようになるMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12189" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/playeranim/archive/master.zip" diff --git a/_data/mods-other/treecapitator.yml b/_data/mods-other/treecapitator.yml new file mode 100644 index 0000000..e69c5e1 --- /dev/null +++ b/_data/mods-other/treecapitator.yml @@ -0,0 +1,10 @@ +name: "TreeCapitator" +author: "Hybrid Dog" +description: "木をまとめて伐採できる、所謂木こりMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=4772" + - + text: "ダウンロード" + url: "https://github.com/HybridDog/treecapitator/archive/master.zip" diff --git a/_data/mods-other/unified_inventory.yml b/_data/mods-other/unified_inventory.yml new file mode 100644 index 0000000..78f4c5a --- /dev/null +++ b/_data/mods-other/unified_inventory.yml @@ -0,0 +1,11 @@ +name: "Unified Inventory" +author: "RealBadAngel" +screenshot: "/mods-other/unified_inventory.png" +description: "統合的なインベントリを追加するMod。このMod単体に多くの機能が実装されている(レシピ確認、所持アイテム数増加、ホーム設定など)。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12767" + - + text: "ダウンロード" + url: "https://github.com/minetest-technic/unified_inventory/archive/master.zip" diff --git a/_data/mods-other/worldedit.yml b/_data/mods-other/worldedit.yml new file mode 100644 index 0000000..2b3391e --- /dev/null +++ b/_data/mods-other/worldedit.yml @@ -0,0 +1,10 @@ +name: "WorldEdit" +author: "sfan5" +description: "マップ編集用のMod。マップのコピー操作などが可能。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=572" + - + text: "ダウンロード" + url: "https://github.com/Uberi/Minetest-WorldEdit/archive/master.zip" diff --git a/_data/mods-other/xban2.yml b/_data/mods-other/xban2.yml new file mode 100644 index 0000000..c44578d --- /dev/null +++ b/_data/mods-other/xban2.yml @@ -0,0 +1,10 @@ +name: "Extended Ban" +author: "kaeza" +description: "BAN機能を拡張するMod。コマンドの説明はフォーラムを参照。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9315" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/xban2/archive/master.zip" diff --git a/_data/mods-tool/armor.yml b/_data/mods-tool/armor.yml new file mode 100644 index 0000000..5b1d6b0 --- /dev/null +++ b/_data/mods-tool/armor.yml @@ -0,0 +1,11 @@ +name: "3D Armor" +author: "stu" +screenshot: "/mods-tool/3d_armor.png" +description: "防具を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=4654" + - + text: "ダウンロード" + url: "https://github.com/stujones11/minetest-3d_armor/archive/master.zip" diff --git a/_data/mods-tool/bags.yml b/_data/mods-tool/bags.yml new file mode 100644 index 0000000..537611a --- /dev/null +++ b/_data/mods-tool/bags.yml @@ -0,0 +1,11 @@ +name: "Bags" +author: "cornernote" +screenshot: "/mods-tool/bags.png" +description: "アイテムを入れられる鞄を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=3081" + - + text: "ダウンロード" + url: "https://github.com/cornernote/minetest-bags/archive/master.zip" diff --git a/_data/mods-tool/compassgps.yml b/_data/mods-tool/compassgps.yml new file mode 100644 index 0000000..f911c21 --- /dev/null +++ b/_data/mods-tool/compassgps.yml @@ -0,0 +1,11 @@ +name: "Compass GPS" +author: "Kilarin" +screenshot: "/mods-tool/compassgps.png" +description: "座標ブックマーク機能付きのコンパス。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9373" + - + text: "ダウンロード" + url: "https://github.com/Kilarin/compassgps/archive/master.zip" diff --git a/_data/mods-tool/craft_guide.yml b/_data/mods-tool/craft_guide.yml new file mode 100644 index 0000000..d20cd43 --- /dev/null +++ b/_data/mods-tool/craft_guide.yml @@ -0,0 +1,11 @@ +name: "Craft Guide" +author: "cornernote" +screenshot: "/mods-tool/craft_guide.png" +description: "レシピを確認できるアイテムを追加するMod。Modで追加されたアイテムにも対応する。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2334" + - + text: "ダウンロード" + url: "https://github.com/cornernote/minetest-craft_guide/archive/master.zip" diff --git a/_data/mods-tool/firearms.yml b/_data/mods-tool/firearms.yml new file mode 100644 index 0000000..d58d910 --- /dev/null +++ b/_data/mods-tool/firearms.yml @@ -0,0 +1,11 @@ +name: "Firearms" +author: "kaeza" +screenshot: "/mods-tool/firearms.png" +description: "銃を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=4562" + - + text: "ダウンロード" + url: "https://github.com/minetest-mods/firearms/archive/master.zip" diff --git a/_data/mods-tool/hoppers.yml b/_data/mods-tool/hoppers.yml new file mode 100644 index 0000000..d773727 --- /dev/null +++ b/_data/mods-tool/hoppers.yml @@ -0,0 +1,11 @@ +name: "Hoppers" +author: "jordan4ibanez" +screenshot: "/mods-tool/hoppers.png" +description: "ホッパーを追加するMod。落ちているアイテムを回収し、自動でチェストなどに入れてくれる。横向きに取り付ける場合、Shiftを押しながら設置する必要がある。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12379" + - + text: "ダウンロード" + url: "https://github.com/jordan4ibanez/Hoppers/archive/master.zip" diff --git a/_data/mods-tool/shooter.yml b/_data/mods-tool/shooter.yml new file mode 100644 index 0000000..62ca38f --- /dev/null +++ b/_data/mods-tool/shooter.yml @@ -0,0 +1,11 @@ +name: "Simple Shooter" +author: "stu" +screenshot: "/mods-tool/shooter.png" +description: "銃火器を追加するMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=7846" + - + text: "ダウンロード" + url: "https://github.com/stujones11/shooter/archive/master.zip" diff --git a/_data/mods-vehicle/boost_cart.yml b/_data/mods-vehicle/boost_cart.yml new file mode 100644 index 0000000..0a0f74d --- /dev/null +++ b/_data/mods-vehicle/boost_cart.yml @@ -0,0 +1,11 @@ +name: "Boost cart" +author: "Krock" +screenshot: "/mods-vehicle/boost_cart.png" +description: "Cartsの改良版。高速化・安定化されている。Cartsのブロックはそのまま使用できる。ブレーキレール・パワードレールに加え、ディテクターレールが同梱されている。Meseconsが導入されている際、パワードレールはMesecons信号が必要になる。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=10172" + - + text: "ダウンロード" + url: "https://github.com/SmallJoker/boost_cart/archive/master.zip" diff --git a/_data/mods-vehicle/meshnodes.yml b/_data/mods-vehicle/meshnodes.yml new file mode 100644 index 0000000..830b895 --- /dev/null +++ b/_data/mods-vehicle/meshnodes.yml @@ -0,0 +1,11 @@ +name: "Meshnodes" +author: "stu" +screenshot: "/mods-vehicle/meshnodes.png" +description: "指定した範囲のブロックをそのまま飛行船に出来るMod。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=8059" + - + text: "ダウンロード" + url: "https://github.com/stujones11/meshnode/archive/master.zip" diff --git a/_data/tools-mapper/minetestmapper.yml b/_data/tools-mapper/minetestmapper.yml new file mode 100644 index 0000000..b4b4867 --- /dev/null +++ b/_data/tools-mapper/minetestmapper.yml @@ -0,0 +1,10 @@ +name: "Minetestmapper" +author: "Celeron55" +description: "Pythonが必要。色指定ファイルと併せて使う。" +links: + - + text: "スクリプト" + url: "https://raw.githubusercontent.com/minetest/minetest/master/util/minetestmapper.py" + - + text: "色指定ファイル" + url: "https://github.com/rubenwardy/NodeBoxEditor/releases" diff --git a/_data/tools-mapper/minetestmapper_cpp.yml b/_data/tools-mapper/minetestmapper_cpp.yml new file mode 100644 index 0000000..eb7b2ab --- /dev/null +++ b/_data/tools-mapper/minetestmapper_cpp.yml @@ -0,0 +1,10 @@ +name: "Minetest Mapper C++" +author: "Minetest開発チーム" +description: "MinetestmapperをC++に移植したバージョン。コンパイルが必要。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2896" + - + text: "Github" + url: "https://github.com/minetest/minetestmapper" diff --git a/_data/tools-mapper/minetestmapper_gui.yml b/_data/tools-mapper/minetestmapper_gui.yml new file mode 100644 index 0000000..f649ecd --- /dev/null +++ b/_data/tools-mapper/minetestmapper_gui.yml @@ -0,0 +1,15 @@ +name: "Minetest Mapper GUI" +author: "addi" +screenshot: "/tools-mapper/minetestmapper_gui.png" +description: "Minetest Mapper C++のGUIフロントエンド。" +platform: "Windows" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=12139" + - + text: "ダウンロード (32bit)" + url: "https://bitbucket.org/adrido/minetestmappergui/downloads/MinetestMapperGui_32.7z" + - + text: "ダウンロード (64bit)" + url: "https://bitbucket.org/adrido/minetestmappergui/downloads/MinetestMapperGui_64.7z" diff --git a/_data/tools-mapper/minetestmapper_numpy.yml b/_data/tools-mapper/minetestmapper_numpy.yml new file mode 100644 index 0000000..d2a8ff1 --- /dev/null +++ b/_data/tools-mapper/minetestmapper_numpy.yml @@ -0,0 +1,13 @@ +name: "numpy-izing minetestmapper" +author: "spillz" +description: "Minetestmapperの改良版。PythonとNumPyが必要。色指定ファイルと併せて使う。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=8730" + - + text: "スクリプト" + url: "https://raw.githubusercontent.com/spillz/minetest/master/util/minetestmapper-numpy.py" + - + text: "色指定ファイル" + url: "https://raw.githubusercontent.com/minetest/minetest/master/util/colors.txt" diff --git a/_data/tools-mod-development/nodeboxeditor.yml b/_data/tools-mod-development/nodeboxeditor.yml new file mode 100644 index 0000000..75e979f --- /dev/null +++ b/_data/tools-mod-development/nodeboxeditor.yml @@ -0,0 +1,12 @@ +name: "NodeBoxEditor" +author: "rubenwardy" +screenshot: "/tools-mod-development/nodeboxeditor.png" +description: "NodeBox作成ツール。" +platform: "Windows / Linux" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=2840" + - + text: "ダウンロード" + url: "https://github.com/rubenwardy/NodeBoxEditor/releases" diff --git a/_data/tools-mod-development/simplemodmaker.yml b/_data/tools-mod-development/simplemodmaker.yml new file mode 100644 index 0000000..2b694df --- /dev/null +++ b/_data/tools-mod-development/simplemodmaker.yml @@ -0,0 +1,10 @@ +name: "Simple Mod Maker" +author: "rubenwardy" +description: "簡単なModを作成するツール。ブラウザ上で動作する。" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=9939" + - + text: "開く" + url: "http://rubenwardy.com/minetest_mod_maker" diff --git a/_data/tools-mod-development/tide.yml b/_data/tools-mod-development/tide.yml new file mode 100644 index 0000000..ba0f175 --- /dev/null +++ b/_data/tools-mod-development/tide.yml @@ -0,0 +1,15 @@ +name: "Tide" +author: "ashenk69" +screenshot: "/tools-mod-development/tide.png" +description: "Modのコードを編集するツール。" +platform: "Windows" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=10214" + - + text: "ダウンロード (32bit)" + url: "https://drive.google.com/file/d/0Bx9DccMfSPY-cE9LNU83bVBhR1k/view?pli=1" + - + text: "ダウンロード (64bit)" + url: "https://drive.google.com/file/d/0Bx9DccMfSPY-c2tJWXJTal9kZkE/view?usp=sharing&pli=1" diff --git a/_data/tools-mod-installer/modster.yml b/_data/tools-mod-installer/modster.yml new file mode 100644 index 0000000..c3e0752 --- /dev/null +++ b/_data/tools-mod-installer/modster.yml @@ -0,0 +1,12 @@ +name: "MODSTER" +author: "Temperest" +screenshot: "/tools-mod-installer/modster.png" +description: "Modを簡単に導入するツール。" +platform: "Windows" +links: + - + text: "フォーラム" + url: "https://forum.minetest.net/viewtopic.php?t=6497" + - + text: "ダウンロード" + url: "https://dl.dropboxusercontent.com/u/8097754/Modster.exe" diff --git a/_includes/details-map.md b/_includes/details-map.md new file mode 100644 index 0000000..b7c2e09 --- /dev/null +++ b/_includes/details-map.md @@ -0,0 +1,47 @@ +{% comment %} +引数: なし (assignされたdata変数を参照) +{% endcomment %} + +{% comment %} +空のリストを作成 +{% endcomment %} +{% assign details = "" | split: "|" %} + +{% comment %} +リンク +{% endcomment %} +{% capture link_list %} + {% for link_data in data.links %} + {% if forloop.first != true %}/{% endif %} + {{ link_data.text }} + {% endfor %} +{% endcapture %} + +{% assign links = "" | split: "|" %} +{% assign links = links | push: "リンク" %} +{% assign links = links | push: link_list %} +{% assign details = details | push: links %} + +{% comment %} +製作者 +{% endcomment %} +{% assign author = "" | split: "|" %} +{% assign author = author | push: "製作者" %} +{% assign author = author | push: data.author %} +{% assign details = details | push: author %} + +{% comment %} +説明 +{% endcomment %} +{% assign description = "" | split: "|" %} +{% assign description = description | push: "説明" %} +{% assign description = description | push: data.description %} +{% assign details = details | push: description %} + +{% comment %} +テンプレートをインクルード +{% endcomment %} +{% include details.md + screenshot = data.screenshot + details = details +%} diff --git a/_includes/details-mod.md b/_includes/details-mod.md new file mode 100644 index 0000000..bf99ae1 --- /dev/null +++ b/_includes/details-mod.md @@ -0,0 +1,87 @@ +{% comment %} +引数: なし (assignされたdata変数を参照) +{% endcomment %} + +{% comment %} +空のリストを作成 +{% endcomment %} +{% assign details = "" | split: "|" %} + +{% comment %} +リンク +{% endcomment %} +{% capture link_list %} + {% for link_data in data.links %} + {% if forloop.first != true %}/{% endif %} + {{ link_data.text }} + {% endfor %} +{% endcapture %} + +{% assign links = "" | split: "|" %} +{% assign links = links | push: "リンク" %} +{% assign links = links | push: link_list %} +{% assign details = details | push: links %} + +{% comment %} +開発者 +{% endcomment %} +{% assign author = "" | split: "|" %} +{% assign author = author | push: "開発者" %} +{% assign author = author | push: data.author %} +{% assign details = details | push: author %} + +{% comment %} +説明 +{% endcomment %} +{% assign description = "" | split: "|" %} +{% assign description = description | push: "説明" %} +{% assign description = description | push: data.description %} +{% assign details = details | push: description %} + +{% comment %} +依存Mod +{% endcomment %} +{% if data.depends %} + {% capture depend_list %} + {% for depend in data.depends %} + {% if depend.url %} + {{ depend.text }}{% if forloop.last != true %},{% endif %} + {% else %} + {{ depend.text }}{% if forloop.last != true %},{% endif %} + {% endif %} + {% endfor %} + {% endcapture %} + + {% assign depends = "" | split: "|" %} + {% assign depends = depends | push: "依存Mod" %} + {% assign depends = depends | push: depend_list %} + {% assign details = details | push: depends %} +{% endif %} + +{% comment %} +対応・連携可能Mod +{% endcomment %} +{% if data.depends-optional %} + {% capture optionally_depend_list %} + {% for depend in data.depends-optional %} + {% if depend.url %} + {{ depend.text }}{% if forloop.last != true %},{% endif %} + {% else %} + {{ depend.text }}{% if forloop.last != true %},{% endif %} + {% endif %} + {% endfor %} + {% endcapture %} + + {% assign depends_optional = "" | split: "|" %} + {% assign depends_optional = depends_optional | push: "依存Mod(任意)" %} + {% assign depends_optional = depends_optional | push: optionally_depend_list %} + {% assign details = details | push: depends_optional %} +{% endif %} + +{% comment %} +テンプレートをインクルード +{% endcomment %} +{% include details.md + screenshot = data.screenshot + details = details +%} diff --git a/_includes/details-subgame.md b/_includes/details-subgame.md new file mode 100644 index 0000000..da322fa --- /dev/null +++ b/_includes/details-subgame.md @@ -0,0 +1,47 @@ +{% comment %} +引数: なし (assignされたdata変数を参照) +{% endcomment %} + +{% comment %} +空のリストを作成 +{% endcomment %} +{% assign details = "" | split: "|" %} + +{% comment %} +リンク +{% endcomment %} +{% capture link_list %} + {% for link_data in data.links %} + {% if forloop.first != true %}/{% endif %} + {{ link_data.text }} + {% endfor %} +{% endcapture %} + +{% assign links = "" | split: "|" %} +{% assign links = links | push: "リンク" %} +{% assign links = links | push: link_list %} +{% assign details = details | push: links %} + +{% comment %} +開発者 +{% endcomment %} +{% assign author = "" | split: "|" %} +{% assign author = author | push: "開発者" %} +{% assign author = author | push: data.author %} +{% assign details = details | push: author %} + +{% comment %} +説明 +{% endcomment %} +{% assign description = "" | split: "|" %} +{% assign description = description | push: "説明" %} +{% assign description = description | push: data.description %} +{% assign details = details | push: description %} + +{% comment %} +テンプレートをインクルード +{% endcomment %} +{% include details.md + screenshot = data.screenshot + details = details +%} diff --git a/_includes/details-texturepack.md b/_includes/details-texturepack.md new file mode 100644 index 0000000..b7c2e09 --- /dev/null +++ b/_includes/details-texturepack.md @@ -0,0 +1,47 @@ +{% comment %} +引数: なし (assignされたdata変数を参照) +{% endcomment %} + +{% comment %} +空のリストを作成 +{% endcomment %} +{% assign details = "" | split: "|" %} + +{% comment %} +リンク +{% endcomment %} +{% capture link_list %} + {% for link_data in data.links %} + {% if forloop.first != true %}/{% endif %} + {{ link_data.text }} + {% endfor %} +{% endcapture %} + +{% assign links = "" | split: "|" %} +{% assign links = links | push: "リンク" %} +{% assign links = links | push: link_list %} +{% assign details = details | push: links %} + +{% comment %} +製作者 +{% endcomment %} +{% assign author = "" | split: "|" %} +{% assign author = author | push: "製作者" %} +{% assign author = author | push: data.author %} +{% assign details = details | push: author %} + +{% comment %} +説明 +{% endcomment %} +{% assign description = "" | split: "|" %} +{% assign description = description | push: "説明" %} +{% assign description = description | push: data.description %} +{% assign details = details | push: description %} + +{% comment %} +テンプレートをインクルード +{% endcomment %} +{% include details.md + screenshot = data.screenshot + details = details +%} diff --git a/_includes/details-tool.md b/_includes/details-tool.md new file mode 100644 index 0000000..0fcce50 --- /dev/null +++ b/_includes/details-tool.md @@ -0,0 +1,57 @@ +{% comment %} +引数: なし (assignされたdata変数を参照) +{% endcomment %} + +{% comment %} +空のリストを作成 +{% endcomment %} +{% assign details = "" | split: "|" %} + +{% comment %} +リンク +{% endcomment %} +{% capture link_list %} + {% for link_data in data.links %} + {% if forloop.first != true %}/{% endif %} + {{ link_data.text }} + {% endfor %} +{% endcapture %} + +{% assign links = "" | split: "|" %} +{% assign links = links | push: "リンク" %} +{% assign links = links | push: link_list %} +{% assign details = details | push: links %} + +{% comment %} +開発者 +{% endcomment %} +{% assign author = "" | split: "|" %} +{% assign author = author | push: "開発者" %} +{% assign author = author | push: data.author %} +{% assign details = details | push: author %} + +{% comment %} +説明 +{% endcomment %} +{% assign description = "" | split: "|" %} +{% assign description = description | push: "説明" %} +{% assign description = description | push: data.description %} +{% assign details = details | push: description %} + +{% comment %} +プラットフォーム +{% endcomment %} +{% if data.platform %} + {% assign platform = "" | split: "|" %} + {% assign platform = platform | push: "プラットフォーム" %} + {% assign platform = platform | push: data.platform %} + {% assign details = details | push: platform %} +{% endif %} + +{% comment %} +テンプレートをインクルード +{% endcomment %} +{% include details.md + screenshot = data.screenshot + details = details +%} diff --git a/_includes/details.md b/_includes/details.md new file mode 100644 index 0000000..506f4b8 --- /dev/null +++ b/_includes/details.md @@ -0,0 +1,38 @@ +{% comment %} +引数: + screenshot: スクリーンショット画像名 + details: 情報のリスト + キー:
に表示される見出し + 値:
に表示される説明 +{% endcomment %} + +

+ {% comment %} + スクリーンショット + {% endcomment %} + {% if include.screenshot %} + {% comment %} + スクリーンショット画像のパス + {% endcomment %} + {% assign screenshot = (site.github.url | append: "/images" | append: include.screenshot) %} + + + {% endif %} + + {% comment %} + 詳細情報 + {% endcomment %} +

+ {% for detail in include.details %} +
{{ detail[0] }}
+
{{ detail[1] }}
+ {% endfor %} +
+

diff --git a/_includes/list-details.md b/_includes/list-details.md new file mode 100644 index 0000000..d245945 --- /dev/null +++ b/_includes/list-details.md @@ -0,0 +1,53 @@ +{% comment %} +引数: + type: 表示するdetailsの種類 + list: 表示するデータのリスト + キー: アンカー名 + 値: データ: + name: データ名 +{% endcomment %} + +{% comment %} +アンカー名でソートする +{% endcomment %} + +{% comment %} +全てのアンカー名を一つの文字列にする +{% endcomment %} +{% capture keys %} + {% for data in include.list %} + {{ data[0] }} + {% endfor %} +{% endcapture %} + +{% comment %} +アンカー名を空白で区切ってソートする +{% endcomment %} +{% assign sorted_keys = (keys | split: " " | sort) %} + +{% comment %} +使用するテンプレートファイル名 +{% endcomment %} +{% capture template %}details-{{ include.type }}.md{% endcapture %} + +{% comment %} +ソートしたアンカーリストでFor実行 +{% endcomment %} +{% for key in sorted_keys %} + {% comment %} + assignした変数はinclude先でも参照できる + アンカー名で参照 + {% endcomment %} + {% assign data = include.list[key] %} + + {% comment %} + Markdownはインデント不可 + {% endcomment %} +# {{ data.name }} {#{{ key }}} + + {% comment %} + テンプレートを表示 + 同じくインデント不可 + {% endcomment %} +{% include {{ template }} %} +{% endfor %} diff --git a/_includes/menu.md b/_includes/menu.md new file mode 100644 index 0000000..d8cfb95 --- /dev/null +++ b/_includes/menu.md @@ -0,0 +1,74 @@ +{% comment %}にidを振らない。AMP Validation対策{% endcomment %} +{::options auto_ids="false" /} + +[トップページ]({{ site.github.url }}) +[掲示板](http://minetest.bbs.fc2.com) + +# Minetest + +[ダウンロード](downloads) +[アップデート情報](changelog) +[よくある質問](questions) +[トラブルシューティング](troubleshooting) + +# ゲームデータ + +{% comment %} +まだ未作成 +[ブロック](blocks) +[アイテム](items) +[クラフト](crafts) +{% endcomment %} +[ブロック(公式Wiki)](https://wiki.minetest.net/Blocks/ja) +[アイテム(公式Wiki)](https://wiki.minetest.net/Items/ja) +[鉱石](ores) +[精錬](smelting) +[農業](farming) +[権限](privileges) +[コマンド](commands) + +# カスタマイズ + +[Mod導入方法](mod-installing) +[Mod解説集](mod-manuals) +[テクスチャパック](texturepacks) +[サブゲーム](subgames) +[配布マップ](maps) + +# Modリスト + +[工業](mods-industry) +[農業](mods-farming) +[装飾](mods-decor) +[道具](mods-tool) +[Mob](mods-mob) +[食べ物](mods-food) +[乗り物](mods-vehicle) +[マップ生成](mods-mapgen) +[その他](mods-other) + +# ツール + +[マッパー](tools-mapper) +[Mod導入補助ツール](tools-mod-installer) +[Mod開発補助ツール](tools-mod-development) + +# その他 + +[関連動画紹介](videos) + +# 外部リンク + +[公式サイト](http://www.minetest.net) +[公式フォーラム](https://forum.minetest.net) +[公式Wiki](http://wiki.minetest.net/Main_Page/ja) +[開発Wiki](http://dev.minetest.net/Main_Page/ja) +[サーバ一覧](http://servers.minetest.net) +[Github](https://github.com/minetest) + +# 更新履歴 + +{% include update-history.md %} + +Minetestの翻訳状況 + diff --git a/_includes/style.scss b/_includes/style.scss new file mode 100644 index 0000000..a05b808 --- /dev/null +++ b/_includes/style.scss @@ -0,0 +1,68 @@ +// ブレークポイント +@mixin media-desktop { + @media {{ site.media-desktop }} { + @content; + } +} +@mixin media-mobile { + @media {{ site.media-mobile }} { + @content; + } +} + +// 共通 +$border-default: 1px solid #ccc; + +// 基本設定 +$background: url({{ site.github.url }}/images/background.png); +$font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", "meiryo", "arial", "sans-serif"; +$font-size: 15px; +$font-size-mobile: 16px; +$text-color: #444; + +// コンテナ +$container-box-shadow: 0 0 10px 0 #ddd; + +// ヘッダ +$header-background: #eee; +$header-link-color: #694; +$header-mobile-box-shadow: 0 0 10px 0 #ddd; +$header-img-vertical-adjustment: -.4em; + +// 本文 (左メニュー含む) +$article-background: #fff; +$article-link-color: #588f3d; +$article-link-color-visited: #456336; + +// 本文 - 見出し +$article-h2-border-bottom: 1px solid #ddd; +$article-h2-font-size: 1.5em; +$article-h3-border-bottom: 1px dotted #ddd; +$article-h3-font-size: 1.25em; +$article-h4-border-bottom: 1px dashed #ddd; +$article-h4-font-size: 1em; +$article-h5-border-bottom: none; +$article-h5-font-size: 1em; +$article-h6-border-bottom: none; +$article-h6-font-size: 1em; + +// フッタ +$footer-background: #333; +$footer-text-color: #fff; + +// モバイルメニュー +$mobile-menu-background: #555; +$mobile-menu-text-color: #fff; + +// Modなどのスクリーンショット +$screenshot-background: #eee; + +// ----- インポート ----- // + +@import "scaffolding"; +@import "container"; +@import "header"; +@import "article"; +@import "footer"; +@import "mobile"; +@import "screenshot"; diff --git a/_includes/update-history.md b/_includes/update-history.md new file mode 100644 index 0000000..532e4d9 --- /dev/null +++ b/_includes/update-history.md @@ -0,0 +1,72 @@ +{% comment %} +引数: なし +{% endcomment %} + +{% comment %} +Markdownの作成 +{% endcomment %} +{% capture list %} + {% comment %} + 全てのページのリストを更新日時でソート + {% endcomment %} + {% assign sorted_pages = (site.pages | sort: "date") %} + + {% comment %} + 逆順(新しいものから)でFor実行 + {% endcomment %} + {% for page in sorted_pages reversed %} + {% comment %} + 更新日時未記入の場合スキップ + {% endcomment %} + {% if page.date == null %} + {% continue %} + {% endif %} + + {% comment %} + 日付を書式化 + {% endcomment %} + {% assign date = (page.date | date: "%Y-%m-%d") %} + + {% comment %} + 日付がループ前のものと一致しない場合 + {% endcomment %} + {% if date != current_date %} + {% comment %} + split用文字 + {% endcomment %} + {% if current_date %}\\{% endif %} + + {% comment %} + 日付見出し + {% endcomment %} + **{{ date }}** + + {% comment %} + 変数のスコープが切れないことを利用 + {% endcomment %} + {% assign current_date = date %} + {% endif %} + + {% comment %} + 改行 + {% endcomment %} +
+ + {% comment %} + リンクの挿入 + {% endcomment %} + [{{ page.title }}]({{ site.github.url }}/{{ page.url }}) + {% endfor %} +{% endcapture %} + +{% comment %} +"\\"で区切ったリスト +{% endcomment %} +{% assign lines = (list | split: "\\") %} +{% for line in lines %} +{% comment %} +改行、空白を取り除いて表示 +Markdownはインデント不可 +{% endcomment %} +{{ line | strip_newlines | strip }} +{% endfor %} diff --git a/_layouts/compress.html b/_layouts/compress.html new file mode 100644 index 0000000..5d893c9 --- /dev/null +++ b/_layouts/compress.html @@ -0,0 +1,10 @@ +--- +#Jekyll layout that compresses HTML +#v3.0.2 +#http://jch.penibelst.de/ +#© 2014–2015 Anatol Broder +#MIT License +--- + +{% capture _LINE_FEED %} +{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "" %}{% endif %}{% unless _pre_before contains "" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " ;; ;" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %}
Step Bytes
raw {{ content | size }}{% if _profile_endings %}
endings {{ _profile_endings }}{% endif %}{% if _profile_startings %}
startings {{ _profile_startings }}{% endif %}{% if _profile_comments %}
comments {{ _profile_comments }}{% endif %}{% if _profile_collapse %}
collapse {{ _profile_collapse }}{% endif %}{% if _profile_clippings %}
clippings {{ _profile_clippings }}{% endif %}
{% endif %}{% endif %} diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..f80678e --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,111 @@ +--- +layout: compress +--- + + +{% capture menu_markdown %}{% include menu.md %}{% endcapture %} +{% assign menu = (menu_markdown | markdownify) %} + + +{% capture style_scss %}{% include style.scss %}{{ page.custom-style }}{% endcapture %} +{% assign style = (style_scss | scssify) %} + + + + + + {{ page.title }} - {{ site.wiki.title }} + + + + + + + + + {{ page.custom-head }} + + + + + + +

メニュー

+ {{ menu }} +
+ + +
+ +
+ + + + + {{ site.wiki.title }} + + + +
+ + +
+

メニュー

+ +
+ + +
+

+ {{ page.title }} + + + + +

+
{{ content }}
+
+ + + +
+ + + + + + + + diff --git a/_sass/_article.scss b/_sass/_article.scss new file mode 100644 index 0000000..eb2ef5f --- /dev/null +++ b/_sass/_article.scss @@ -0,0 +1,115 @@ +// 本文 +.article { + background: $article-background; + padding: 0 1em 1em 1em; + + @include media-mobile { + // ヘッダの高さを計算 + $line-height: ($font-size * 20 / 14); + $line-height-mobile: ($line-height * 1.1); + $top-padding: ($line-height-mobile * 3 - $font-size-mobile); + + padding-top: $top-padding; + + h1[id]::before, + h2[id]::before, + h3[id]::before, + h4[id]::before, + h5[id]::before, + h6[id]::before { + content: ""; + display: block; + height: $top-padding; + margin: -$top-padding 0 0; + } + } + + > .title { + @include media-mobile { + text-align: center; + } + } + + > .body { + a { + text-decoration: underline; + + &:link { + color: $article-link-color; + } + + &:visited, + &:hover, + &:focus, + &:active { + color: $article-link-color-visited; + } + } + + dt { + font-style: italic; + font-weight: bold; + margin-bottom: 0.5em; + margin-top: 0.5em; + } + + dd { + margin-left: 1.5em; + } + + h2, + h3, + h4, + h5, + h6 { + font-weight: bold; + line-height: 1.1em; + margin: 1rem 0; + } + + h2 { + border-bottom: $article-h2-border-bottom; + font-size: $article-h2-font-size; + } + + h3 { + border-bottom: $article-h3-border-bottom; + font-size: $article-h3-font-size; + } + + h4 { + border-bottom: $article-h4-border-bottom; + font-size: $article-h4-font-size; + } + + h5 { + border-bottom: $article-h5-border-bottom; + font-size: $article-h5-font-size; + } + + h6 { + border-bottom: $article-h6-border-bottom; + font-size: $article-h6-font-size; + } + + p { + margin-bottom: 1em; + margin-top: 1em; + } + + pre { + overflow: auto; + white-space: pre; + } + + table { + border: $border-default; + border-collapse: collapse; + + td, th { + border: $border-default; + padding: 0.5em; + } + } + } +} diff --git a/_sass/_container.scss b/_sass/_container.scss new file mode 100644 index 0000000..84ef04d --- /dev/null +++ b/_sass/_container.scss @@ -0,0 +1,57 @@ +// コンテナ +#container { + box-sizing: border-box; + min-height: 100vh; + + @include media-desktop { + border-left: $border-default; + border-right: $border-default; + box-shadow: $container-box-shadow; + box-sizing: border-box; + display: -ms-grid; + -ms-grid-template-columns: 20em 1fr; + display: grid; + grid-template-columns: 20em 1fr; + margin: 0 auto; + width: 85vw; + + header { + border-bottom: $border-default; + grid-column-start: 1; + grid-column-end: 3; + grid-row-start: 1; + grid-row-end: 2; + } + + #menu { + border-right: $border-default; + grid-column-start: 1; + grid-column-end: 2; + grid-row-start: 2; + grid-row-end: 3; + } + + #content { + grid-column-start: 2; + grid-column-end: 3; + grid-row-start: 2; + grid-row-end: 3; + } + + footer { + grid-column-start: 1; + grid-column-end: 3; + grid-row-start: 3; + grid-row-end: 4; + } + } + + @include media-mobile { + margin: 0; + width: 100vw; + + #menu { + display: none; + } + } +} diff --git a/_sass/_footer.scss b/_sass/_footer.scss new file mode 100644 index 0000000..8c052fb --- /dev/null +++ b/_sass/_footer.scss @@ -0,0 +1,19 @@ +// フッタ +footer { + background: $footer-background; + color: $footer-text-color; + padding: 1em 0; + text-align: center; + + a { + text-decoration: underline; + + &:link, + &:visited, + &:hover, + &:focus, + &:active { + color: $footer-text-color; + } + } +} diff --git a/_sass/_header.scss b/_sass/_header.scss new file mode 100644 index 0000000..86fa05b --- /dev/null +++ b/_sass/_header.scss @@ -0,0 +1,44 @@ +// ヘッダ +header { + background: $header-background; + box-sizing: border-box; + font-weight: bold; + padding: 1em; + + @include media-mobile { + border-bottom: $border-default; + box-shadow: $container-box-shadow; + position: fixed; + width: 100%; + z-index: 9999; + } + + a { + text-decoration: none; + + &:link, + &:visited, + &:hover, + &:focus, + &:active { + color: $header-link-color; + } + + > amp-img { + float: left; + margin: $header-img-vertical-adjustment 1em 0 0; + } + } + + button { + background: transparent; + border: none; + float: right; + object-fit: contain; + padding: 0; + + @include media-desktop { + display: none; + } + } +} diff --git a/_sass/_mobile.scss b/_sass/_mobile.scss new file mode 100644 index 0000000..7223d8d --- /dev/null +++ b/_sass/_mobile.scss @@ -0,0 +1,41 @@ +// モバイルメニュー +amp-sidebar { + background: $mobile-menu-background; + color: $mobile-menu-text-color; + padding: 1em; + text-align: center; + width: 75vw; + + a { + &:link, + &:visited, + &:hover, + &:focus, + &:active { + color: $mobile-menu-text-color; + } + } + + button { + background: transparent; + border: none; + object-fit: contain; + padding: 0; + } + + h1, + h2, + h3, + h4, + h5, + h6 { + color: $mobile-menu-text-color; + } +} + +.top-button { + opacity: 0.75; + position: fixed; + right: 1em; + bottom: 1em; +} diff --git a/_sass/_scaffolding.scss b/_sass/_scaffolding.scss new file mode 100644 index 0000000..325afe8 --- /dev/null +++ b/_sass/_scaffolding.scss @@ -0,0 +1,20 @@ +// 基本設定 +body { + $line-height: ($font-size * 20 / 14); + + background: $background; + color: $text-color; + font-family: $font-family; + font-size: $font-size; + letter-spacing: 0.05em; + line-height: $line-height; + margin: 0; + + // モバイルの場合は文字を大きく + @include media-mobile { + $line-height-mobile: ($line-height * 1.1); + + font-size: $font-size-mobile; + line-height: $line-height-mobile; + } +} diff --git a/_sass/_screenshot.scss b/_sass/_screenshot.scss new file mode 100644 index 0000000..e21dce8 --- /dev/null +++ b/_sass/_screenshot.scss @@ -0,0 +1,10 @@ +// スクリーンショット +.screenshot { + background: $screenshot-background; + max-height: 300px; + max-width: 600px; + + img { + object-fit: contain; + } +} diff --git a/images/background.png b/images/background.png new file mode 100644 index 0000000..58e764d Binary files /dev/null and b/images/background.png differ diff --git a/images/edit.svg b/images/edit.svg new file mode 100644 index 0000000..ab13364 --- /dev/null +++ b/images/edit.svg @@ -0,0 +1 @@ + diff --git a/images/icon.png b/images/icon.png new file mode 100644 index 0000000..bf70eb4 Binary files /dev/null and b/images/icon.png differ diff --git a/images/icon.svg b/images/icon.svg new file mode 100644 index 0000000..c59e965 --- /dev/null +++ b/images/icon.svg @@ -0,0 +1 @@ + diff --git a/images/license.txt b/images/license.txt new file mode 100644 index 0000000..974343e --- /dev/null +++ b/images/license.txt @@ -0,0 +1,10 @@ +Calinou and minetest.github.io contributors (CC BY-SA 3.0): + background.png + icon.png + icon.svg + +Vaadin https://www.flaticon.com/authors/vaadin (CC BY 3.0): + edit.svg + menu.svg + menu_close.svg + top.svg diff --git a/images/menu.svg b/images/menu.svg new file mode 100644 index 0000000..786ee20 --- /dev/null +++ b/images/menu.svg @@ -0,0 +1 @@ + diff --git a/images/menu_close.svg b/images/menu_close.svg new file mode 100644 index 0000000..5c0a1ef --- /dev/null +++ b/images/menu_close.svg @@ -0,0 +1 @@ + diff --git a/images/mods-decor/cactus_plus.png b/images/mods-decor/cactus_plus.png new file mode 100644 index 0000000..7c42f95 Binary files /dev/null and b/images/mods-decor/cactus_plus.png differ diff --git a/images/mods-decor/carpets.png b/images/mods-decor/carpets.png new file mode 100644 index 0000000..3ef53c1 Binary files /dev/null and b/images/mods-decor/carpets.png differ diff --git a/images/mods-decor/ceramic.png b/images/mods-decor/ceramic.png new file mode 100644 index 0000000..0d58140 Binary files /dev/null and b/images/mods-decor/ceramic.png differ diff --git a/images/mods-decor/colormachine.png b/images/mods-decor/colormachine.png new file mode 100644 index 0000000..ddbbccc Binary files /dev/null and b/images/mods-decor/colormachine.png differ diff --git a/images/mods-decor/comp_stone.png b/images/mods-decor/comp_stone.png new file mode 100644 index 0000000..110c3a9 Binary files /dev/null and b/images/mods-decor/comp_stone.png differ diff --git a/images/mods-decor/foodblock.png b/images/mods-decor/foodblock.png new file mode 100644 index 0000000..5bb6f4f Binary files /dev/null and b/images/mods-decor/foodblock.png differ diff --git a/images/mods-decor/homedecor.png b/images/mods-decor/homedecor.png new file mode 100644 index 0000000..abcbdc6 Binary files /dev/null and b/images/mods-decor/homedecor.png differ diff --git a/images/mods-decor/ilights.png b/images/mods-decor/ilights.png new file mode 100644 index 0000000..3629a43 Binary files /dev/null and b/images/mods-decor/ilights.png differ diff --git a/images/mods-decor/moreblocks.png b/images/mods-decor/moreblocks.png new file mode 100644 index 0000000..d63044a Binary files /dev/null and b/images/mods-decor/moreblocks.png differ diff --git a/images/mods-decor/streets.png b/images/mods-decor/streets.png new file mode 100644 index 0000000..3c4293c Binary files /dev/null and b/images/mods-decor/streets.png differ diff --git a/images/mods-decor/tables.png b/images/mods-decor/tables.png new file mode 100644 index 0000000..ff69304 Binary files /dev/null and b/images/mods-decor/tables.png differ diff --git a/images/mods-decor/travelnet.png b/images/mods-decor/travelnet.png new file mode 100644 index 0000000..dd66579 Binary files /dev/null and b/images/mods-decor/travelnet.png differ diff --git a/images/mods-decor/xdecor.png b/images/mods-decor/xdecor.png new file mode 100644 index 0000000..78d247e Binary files /dev/null and b/images/mods-decor/xdecor.png differ diff --git a/images/mods-farming/farming_redo.png b/images/mods-farming/farming_redo.png new file mode 100644 index 0000000..e3fb09e Binary files /dev/null and b/images/mods-farming/farming_redo.png differ diff --git a/images/mods-food/barbeque.png b/images/mods-food/barbeque.png new file mode 100644 index 0000000..caaf342 Binary files /dev/null and b/images/mods-food/barbeque.png differ diff --git a/images/mods-food/food.png b/images/mods-food/food.png new file mode 100644 index 0000000..5164c03 Binary files /dev/null and b/images/mods-food/food.png differ diff --git a/images/mods-industry/digilines.png b/images/mods-industry/digilines.png new file mode 100644 index 0000000..e125aa4 Binary files /dev/null and b/images/mods-industry/digilines.png differ diff --git a/images/mods-industry/mesecons.png b/images/mods-industry/mesecons.png new file mode 100644 index 0000000..10c4e04 Binary files /dev/null and b/images/mods-industry/mesecons.png differ diff --git a/images/mods-industry/pipeworks.png b/images/mods-industry/pipeworks.png new file mode 100644 index 0000000..ef23f65 Binary files /dev/null and b/images/mods-industry/pipeworks.png differ diff --git a/images/mods-industry/tech_add.png b/images/mods-industry/tech_add.png new file mode 100644 index 0000000..d456df2 Binary files /dev/null and b/images/mods-industry/tech_add.png differ diff --git a/images/mods-industry/technic.png b/images/mods-industry/technic.png new file mode 100644 index 0000000..5693ca1 Binary files /dev/null and b/images/mods-industry/technic.png differ diff --git a/images/mods-mapgen/bedrock.png b/images/mods-mapgen/bedrock.png new file mode 100644 index 0000000..f3dd520 Binary files /dev/null and b/images/mods-mapgen/bedrock.png differ diff --git a/images/mods-mapgen/bedrock2.png b/images/mods-mapgen/bedrock2.png new file mode 100644 index 0000000..3955fc6 Binary files /dev/null and b/images/mods-mapgen/bedrock2.png differ diff --git a/images/mods-mapgen/ethereal_ng.png b/images/mods-mapgen/ethereal_ng.png new file mode 100644 index 0000000..0dbb69c Binary files /dev/null and b/images/mods-mapgen/ethereal_ng.png differ diff --git a/images/mods-mapgen/moreores.png b/images/mods-mapgen/moreores.png new file mode 100644 index 0000000..015db8a Binary files /dev/null and b/images/mods-mapgen/moreores.png differ diff --git a/images/mods-mapgen/moretrees.png b/images/mods-mapgen/moretrees.png new file mode 100644 index 0000000..b08c014 Binary files /dev/null and b/images/mods-mapgen/moretrees.png differ diff --git a/images/mods-mapgen/nether.png b/images/mods-mapgen/nether.png new file mode 100644 index 0000000..13fbf67 Binary files /dev/null and b/images/mods-mapgen/nether.png differ diff --git a/images/mods-mapgen/nether_hybriddog.png b/images/mods-mapgen/nether_hybriddog.png new file mode 100644 index 0000000..978fb9d Binary files /dev/null and b/images/mods-mapgen/nether_hybriddog.png differ diff --git a/images/mods-mapgen/oresplus.png b/images/mods-mapgen/oresplus.png new file mode 100644 index 0000000..69501e1 Binary files /dev/null and b/images/mods-mapgen/oresplus.png differ diff --git a/images/mods-mapgen/plantlife.png b/images/mods-mapgen/plantlife.png new file mode 100644 index 0000000..fb36843 Binary files /dev/null and b/images/mods-mapgen/plantlife.png differ diff --git a/images/mods-mapgen/quartz.png b/images/mods-mapgen/quartz.png new file mode 100644 index 0000000..ccb6aba Binary files /dev/null and b/images/mods-mapgen/quartz.png differ diff --git a/images/mods-mob/mobs_redo.png b/images/mods-mob/mobs_redo.png new file mode 100644 index 0000000..621c329 Binary files /dev/null and b/images/mods-mob/mobs_redo.png differ diff --git a/images/mods-mob/mobtalker.png b/images/mods-mob/mobtalker.png new file mode 100644 index 0000000..76d09f5 Binary files /dev/null and b/images/mods-mob/mobtalker.png differ diff --git a/images/mods-other/awards.png b/images/mods-other/awards.png new file mode 100644 index 0000000..46f5098 Binary files /dev/null and b/images/mods-other/awards.png differ diff --git a/images/mods-other/hud_hunger.png b/images/mods-other/hud_hunger.png new file mode 100644 index 0000000..2108ea6 Binary files /dev/null and b/images/mods-other/hud_hunger.png differ diff --git a/images/mods-other/playeranim.png b/images/mods-other/playeranim.png new file mode 100644 index 0000000..3edc042 Binary files /dev/null and b/images/mods-other/playeranim.png differ diff --git a/images/mods-other/unified_inventory.png b/images/mods-other/unified_inventory.png new file mode 100644 index 0000000..586cd66 Binary files /dev/null and b/images/mods-other/unified_inventory.png differ diff --git a/images/mods-tool/armor.png b/images/mods-tool/armor.png new file mode 100644 index 0000000..78055fe Binary files /dev/null and b/images/mods-tool/armor.png differ diff --git a/images/mods-tool/bags.png b/images/mods-tool/bags.png new file mode 100644 index 0000000..f525a78 Binary files /dev/null and b/images/mods-tool/bags.png differ diff --git a/images/mods-tool/compassgps.png b/images/mods-tool/compassgps.png new file mode 100644 index 0000000..9ccc68a Binary files /dev/null and b/images/mods-tool/compassgps.png differ diff --git a/images/mods-tool/craft_guide.png b/images/mods-tool/craft_guide.png new file mode 100644 index 0000000..8154ce6 Binary files /dev/null and b/images/mods-tool/craft_guide.png differ diff --git a/images/mods-tool/firearms.png b/images/mods-tool/firearms.png new file mode 100644 index 0000000..0a99c51 Binary files /dev/null and b/images/mods-tool/firearms.png differ diff --git a/images/mods-tool/hoppers.png b/images/mods-tool/hoppers.png new file mode 100644 index 0000000..568fffb Binary files /dev/null and b/images/mods-tool/hoppers.png differ diff --git a/images/mods-tool/shooter.png b/images/mods-tool/shooter.png new file mode 100644 index 0000000..8d1542e Binary files /dev/null and b/images/mods-tool/shooter.png differ diff --git a/images/mods-vehicle/boost_cart.png b/images/mods-vehicle/boost_cart.png new file mode 100644 index 0000000..b05afa6 Binary files /dev/null and b/images/mods-vehicle/boost_cart.png differ diff --git a/images/mods-vehicle/meshnodes.png b/images/mods-vehicle/meshnodes.png new file mode 100644 index 0000000..2daf657 Binary files /dev/null and b/images/mods-vehicle/meshnodes.png differ diff --git a/images/screenshot/1.png b/images/screenshot/1.png new file mode 100644 index 0000000..daf5339 Binary files /dev/null and b/images/screenshot/1.png differ diff --git a/images/screenshot/2.png b/images/screenshot/2.png new file mode 100644 index 0000000..aee0bf2 Binary files /dev/null and b/images/screenshot/2.png differ diff --git a/images/tools-mapper/minetestmapper_gui.png b/images/tools-mapper/minetestmapper_gui.png new file mode 100644 index 0000000..565efbb Binary files /dev/null and b/images/tools-mapper/minetestmapper_gui.png differ diff --git a/images/tools-mod-development/nodeboxeditor.png b/images/tools-mod-development/nodeboxeditor.png new file mode 100644 index 0000000..7b4c9fe Binary files /dev/null and b/images/tools-mod-development/nodeboxeditor.png differ diff --git a/images/tools-mod-development/tide.png b/images/tools-mod-development/tide.png new file mode 100644 index 0000000..7ccf3dd Binary files /dev/null and b/images/tools-mod-development/tide.png differ diff --git a/images/tools-mod-installer/modster.png b/images/tools-mod-installer/modster.png new file mode 100644 index 0000000..90f314f Binary files /dev/null and b/images/tools-mod-installer/modster.png differ diff --git a/images/top.svg b/images/top.svg new file mode 100644 index 0000000..0a9c8a1 --- /dev/null +++ b/images/top.svg @@ -0,0 +1 @@ + diff --git a/wiki/404.md b/wiki/404.md new file mode 100644 index 0000000..7a0e0a7 --- /dev/null +++ b/wiki/404.md @@ -0,0 +1,6 @@ +--- +title: 404 +permalink: /404.html +--- + +**ご指定のページが見つかりませんでした。** diff --git a/wiki/changelog.md b/wiki/changelog.md new file mode 100644 index 0000000..4902ce4 --- /dev/null +++ b/wiki/changelog.md @@ -0,0 +1,38 @@ +--- +title: アップデート情報 +date: +--- + +アップデート内容を大まかにまとめたものです。 +細かい変更点は公式Wikiの[Changelog](http://dev.minetest.net/Changelog)や、Githubの[コミットログ](https://github.com/minetest/minetest/commits/stable-0.4)をご覧ください。 + +- toc +{:toc} + +# 0.4.14 + +## Minetest + +
+
オートラン機能が追加されました。
+
詳細設定メニューの「クライアント > 操作 > オートランキー」で指定したキーを押すとオートランができます。
+ +
詳細設定メニューが追加されました。
+
タイトルメニューの設定タブからアクセスできます。
+ +
Valleysマップが追加されました。
+
ワールド作成画面から選択できます。
+ +
adminコマンドが追加されました。
+
サーバ管理者のプレイヤー名を表示するコマンドです。
+ +
ミニマップにプレイヤーアイコンが表示されるようになりました。
+
+ +## Minetest Game + +
+
クリエイティブインベントリが改良されました。
+ +
壁やフェンスゲートが追加されました。
+
diff --git a/wiki/commands.md b/wiki/commands.md new file mode 100644 index 0000000..44d116a --- /dev/null +++ b/wiki/commands.md @@ -0,0 +1,281 @@ +--- +title: コマンド +date: +--- + +利用できるコマンドの一覧です。 +MinetestおよびMinetest Gameで利用できるもののみ掲載しています。 + +チャットメッセージの先頭に「/」を入力し、その後にコマンドを入力します。 +ゲーム中に/キーを押すと「/」が入力された状態でチャット画面が開きます。 +また、F10キーで表示できるコンソールから実行することもできます。 + +- toc +{:toc} + +# Minetest + +## me + +`/me <メッセージ>` + +自分のプレイヤー名をメッセージの文頭に挿入し、チャットに送信するコマンド。 +[shout権限](privileges#shout)が必要。 + +## admin + +`/admin` + +サーバ管理者のプレイヤー名を表示するコマンド。 + +## help + +`/help` + +プレイヤーが使用できるコマンドの一覧を表示する。 + +`/help all` + +プレイヤーが使用できるコマンドとその説明を表示する。 + +`/help privs` + +全ての[権限](privileges)を表示する。 + +`/help <コマンド名>` + +指定したコマンドの説明を表示する。 + +## privs + +`/privs` + +自分が持っている[権限](privileges)を表示する。 + +`/privs <プレイヤー名>` + +指定したプレイヤーの持つ[権限](privileges)を表示する。 + +## msg + +`/msg <プレイヤー名> <メッセージ>` + +指定したプレイヤーにのみメッセージを送信する。 +[shout権限](privileges#shout)が必要。 + +## giveme + +`/giveme <アイテム名> <個数>` + +指定したアイテムを入手する。 +[give権限](privileges#give)が必要。 + +## give + +`/give <プレイヤー名> <アイテム名> <個数>` + +指定したプレイヤーに指定したアイテムを与える。 +[give権限](privileges#give)が必要。 + +## pulverize + +`/pulverize` + +今手に持っているアイテムを削除する。 + +## teleport + +これらは[teleport権限](privileges#teleport)が必要。 + +`/teleport ` + +指定したXYZ座標にテレポートする。 + +`/teleport <プレイヤー名>` + +指定したプレイヤーの場所にワープする。 + +`/teleport <プレイヤー名> ` + +指定したプレイヤーを指定したXYZ座標にテレポートさせる。 +[bring権限](privileges#bring)が必要。 + +`/teleport <プレイヤー名1> <プレイヤー名2>` + +プレイヤー名1で指定したプレイヤーをプレイヤー名2で指定したプレイヤーの位置にテレポートさせる。 +[bring権限](privileges#bring)が必要。 + +## setpassword + +`/setpassword <プレイヤー名> <パスワード>` + +指定したプレイヤーのパスワードを変更する。 +[password権限](privileges#password)が必要。 + +## clearpassword + +`/clearpassword <プレイヤー名>` +指定したプレイヤーのパスワードを空にする。 +[password権限](privileges#password)が必要。 + +## grant + +`/grant <プレイヤー名> <権限名>` + +指定したプレイヤーに[権限](privileges)を与える。 +[権限](privileges)名にallと入力すると使用可能なすべての[権限](privileges)が与えられる。 +[privs権限](privileges#privs)が必要。 + +## revoke + +`/revoke <プレイヤー名> <権限名>` + +指定したプレイヤーから[権限](privileges)を剥奪する。 +[権限](privileges)名にallと入力すると削除可能なすべての[権限](privileges)を剥奪する。 +[privs権限](privileges#privs)が必要。 +※シングルプレイヤーの[権限](privileges)からinteract、shout、basic_privs、privsを外すことはできません。 + +## kick + +`/kick <プレイヤー名> <切断理由>` + +指定したプレイヤーをBANし、切断したプレイヤー名では接続できなくなる。 +切断理由は切断した相手に伝わる。 +[kick権限](privileges#kick)が必要。 + +## ban + +`/ban <プレイヤー名>` + +指定したプレイヤーをBANし、切断したプレイヤーのIPでは接続できなくなる。 +プレイヤー名を指定しない場合はBANしたプレイヤーの一覧が表示される。 +[ban権限](privileges#ban)が必要。 + +## unban + +`/unban [プレイヤー名|IPアドレス]` + +指定したプレイヤーのBANを解除する。 +[ban権限](privileges#unban)が必要。 + +## status + +`/status` + +サーバーの詳細が表示される。 + +## mods + +`/mods` + +サーバーで使用されているModの一覧が表示される。 + +## time + +`/time <時間>` + +ゲーム内時間を指定した時間に変更する。 +0または24000は真夜中、12000は昼になる。 +[settime権限](privileges#settime)が必要。 + +`/set -n time_speed <時間の早さ>` + +昼と夜のサイクルの早さを変更する。 +標準の早さは72に設定されている。 +[server権限](privileges#server)が必要。 + +## spawnentity + +`/spawnentity <エンティティ名>` + +指定したエンティティを出現させる。 +標準の早さは72に設定されている。 +[give権限](privileges#give)と[interact権限](privileges#interact)が必要。 + +## shutdown + +`/shutdown` + +サーバーをシャットダウンする。 +[server権限](privileges#server)が必要。 + +## set + +これらは[server権限](privileges#server)が必要。 + +`/set <変数名>` + +サーバーのminetest.conf内の変数のパラメータを表示する。 + +`/set <変数名> <新しい値>` + +一時的に変数のパラメータを変更する。 + +`/set -n <変数名> <値>` + +指定した変数名と値で新規パラメータを作成する。 + +## clearobjects + +`/clearobjects` + +マップ上の全てのオブジェクトとエンティティを削除する。 +ブロックは削除されない。 +時間がかかる。。 +[server権限](privileges#server)が必要。 + +## auth_reload + +`/auth_reload` + +プレイヤーの[権限](privileges)とパスワードを再読み込みする。 +[server権限](privileges#server)が必要。 + +## deleteblocks + +これらは[server権限](privileges#server)が必要。 + +`/deleteblocks here [半径]` + +プレイヤーの位置を中心に半径内のマップ変更を元に戻す。 +半径を省略した場合はプレイヤーと重なっているブロックが元に戻される。 + +`/deleteblocks ` + +2つの座標内のマップ変更を元に戻す。 + +## rollback + +これらは[rollback権限](privileges#rollback)が必要。 + +`/rollback_check <範囲> <秒>` + +プレイヤーが行った行動(ブロック破壊など)を確認する。 + +`/rollback <プレイヤー名> <秒>` + +指定したプレイヤーが行った行動を元に戻す。 +何秒前か指定すると、指定した秒数より後に行った行動は元に戻る。 + +`/rollback <アクター名> <秒>` + +指定したアクターが行った行動を元に戻す。 + +## profiler + +# Minetest Game + +## home + +`/home` + +設定したホームの位置にテレポートするコマンド。 +ホームを設定していない場合は動作しない。 +[home権限](privileges#home)が必要。 + +## sethome + +`/sethome` + +現在の位置をホームとして設定するコマンド。 +[home権限](privileges#home)が必要。 diff --git a/wiki/downloads.md b/wiki/downloads.md new file mode 100644 index 0000000..6b7df8d --- /dev/null +++ b/wiki/downloads.md @@ -0,0 +1,59 @@ +--- +title: ダウンロード +date: +custom-style: >- + .red {color: #FF0000} +--- +{% comment %}短縮{% endcomment %} +{% assign version = site.minetest.latest_version %} + +Minetestの最新バージョン({{ version }})をダウンロードできます。 + +- toc +{:toc} + +# Windows + +[64bit版](https://github.com/minetest/minetest/releases/download/{{ version }}/minetest-{{ version }}-win64.zip) +[32bit版 (MinGW)](https://github.com/minetest/minetest/releases/download/{{ version }}/minetest-{{ version }}-win32-mingw.zip) +[32bit版 (MSVC)](https://github.com/minetest/minetest/releases/download/{{ version }}/minetest-{{ version }}-win32-msvc.zip) + +# macOS + +[Homebrew](http://brew.sh)を導入している場合は「brew install homebrew/games/minetest」でもインストールできます。 + +[安定版](https://github.com/krondor-game/minetest/releases/tag/stable) +[最新版](https://github.com/krondor-game/minetest/releases) + +# Linux + +[Debian](https://packages.debian.org/search?keywords=minetest) +[Ubuntu / Linux Mint](http://packages.ubuntu.com/search?keywords=minetest) +[Ubuntu / Linux Mint (PPA)](https://launchpad.net/~minetestdevs/+archive/ubuntu/stable) +[Fedora](https://apps.fedoraproject.org/packages/minetest) +[openSUSE](http://software.opensuse.org/package/minetest) +[Mageia](http://mageia.madb.org/package/show/name/minetest) +[Arch Linux](https://www.archlinux.org/packages/?q=minetest) +[Gentoo](http://packages.gentoo.org/package/games-action/minetest) + +Git・デイリービルド +[Arch Linux](https://aur.archlinux.org/packages/minetest-git) +[Arch Linux (leveldb)](https://aur.archlinux.org/packages/minetest-git-leveldb) +[Ubuntu / Linux Mint](https://code.launchpad.net/~minetestdevs/+archive/daily-builds/+packages) + +# Android + +注意: 海賊版がGoogle Playに出回っているようです。 +{: class="red"} + +[Google Play](https://play.google.com/store/apps/details?id=net.minetest.minetest) +[F-Droid](https://f-droid.org/repository/browse/?fdid=net.minetest.minetest) + +# その他のOS + +[FreeBSD](http://www.freshports.org/games/minetest) + +# ソースコード + +[Minetest](https://github.com/minetest/minetest/archive/master.zip) +[Minetest Game](https://github.com/minetest/minetest_game/archive/master.zip) diff --git a/wiki/farming.md b/wiki/farming.md new file mode 100644 index 0000000..df04432 --- /dev/null +++ b/wiki/farming.md @@ -0,0 +1,49 @@ +--- +title: 農業 +date: +--- + +- toc +{:toc} + +# 道具 + +
+
クワ
+
+ 畑を耕し、農業をするための道具。
+ 土に向かって左クリックすると、土を農地にできる。
+ (ブロックの破壊・採取は行えない) +
+
+ +# 小麦 + +小麦の種は草を破壊するとたまに得ることができる。 +土にクワを持って左クリックすると乾いた農地になり、また、乾いた農地から周辺3マス以内に水があれば灌漑された農地になる。 +農地に種を持って右クリックすると植えることができ、農地が湿っていて明かりがあれば成長する。 +成長した作物を破壊すると、小麦と小麦の種を収穫できる。 +ただし、成長途中で破壊してしまうと十分な収穫ができなかったり、何も得られなかったりする。 +小麦を4つクラフトすると「小麦粉」を得られ、小麦粉をかまどで焼くと「パン」になる。 + +# コットン + +コットンの種はジャングルの草を破壊するとたまに得ることができる。 +コットンの生育は小麦と同様、灌漑された農地に植える必要がある。 +コットンを4つクラフトすると、羊毛になる。 + +# サボテン + +サボテンは砂漠に自生していることがある。素手では破壊・採取ができず、破壊には斧が必要。 +なお、触ってもダメージはない。 +砂の上に配置していると、一定の高さまで育つ。 + +# パピルス + +水の近くに自生していることがる。 +水の近く(3マス以内)に配置していると、一定の高さまで育つ。 + +# 木 + +葉っぱブロックを破壊すると、たまに苗木を得ることができる。 +苗木を土の上に配置すると、十分なスペースと明かりがあれば、木に成長する。 diff --git a/wiki/index.md b/wiki/index.md new file mode 100644 index 0000000..50f7404 --- /dev/null +++ b/wiki/index.md @@ -0,0 +1,40 @@ +--- +title: トップページ +date: 2017-12-2 +custom-style: >- + .center { + text-align: center; + } + .news { + color: #fff; + background-color: #808080; + } + .carousel { + margin: auto; + max-width: 500px; + max-height: 380px; + } +custom-head: >- + +--- + + + +**Minetest JP Wikiへようこそ。** +このサイトは[Minetest](http://www.minetest.net)の**非公式**Wikiです。 +{:class="center"} + +**お知らせ: (2017/6/4) バージョン0.4.16がリリースされました。** +{:class="center news"} + +現在の最新バージョンは{{ site.minetest.latest_version }}です。アップデートの内容は[アップデート情報](changelog)をご覧ください。 +{:class="center"} + +# Minetestとは? +[Minetest](http://www.minetest.net)は[Minecraft](https://minecraft.net)風のサンドボックス系フリーゲームです。ブロックで建築したり、洞窟を探検したり、作物を育てたりと、広い世界で自由に遊ぶことができます。 +また、MinetestはModに対応しています。Modにはブロックを追加するものからワールド全体を変えるものまで、様々なものがあります。その他の拡張要素として、テクスチャパックとサブゲームがあります。 diff --git a/wiki/maps.md b/wiki/maps.md new file mode 100644 index 0000000..48c6da1 --- /dev/null +++ b/wiki/maps.md @@ -0,0 +1,11 @@ +--- +title: 配布マップ +--- + +- toc +{:toc} + +{% include list-details.md + type = "map" + list = site.data.maps +%} diff --git a/wiki/mod-installing.md b/wiki/mod-installing.md new file mode 100644 index 0000000..5a68f52 --- /dev/null +++ b/wiki/mod-installing.md @@ -0,0 +1,26 @@ +--- +title: Mod導入方法 +date: +--- + +# 1. Modをダウンロードする + +このWikiのModリストからダウンロードできるほか、公式フォーラムにも多くのModがあります。 + +# 2. ファイルを解凍する + +ダウンロードしたModはそのままでは使用できません。 +圧縮されているため解凍する必要があります。 +解凍するとModのフォルダが展開されます。 + +# 3. Modフォルダを移動する + +解凍したModフォルダをMinetestのmodsフォルダ内にコピーします。 +Linuxの場合、modsフォルダはホームディレクトリの.minetest内にあります。 +コピーする際はMod名から記号や-masterを取り除いてください。 + +# 4. Modを有効化する + +Minetestのワールド設定画面に導入したModが表示されます。 +ダブルクリックするか有効化ボタンを押すことで有効になります。 + diff --git a/wiki/mod-manuals/mod-manual-pipeworks.md b/wiki/mod-manuals/mod-manual-pipeworks.md new file mode 100644 index 0000000..1f1c80f --- /dev/null +++ b/wiki/mod-manuals/mod-manual-pipeworks.md @@ -0,0 +1,275 @@ +--- +title: Mod解説 - Pipeworks +date: +--- + +工業Mod「Pipeworks」の解説ページです。 +作成: ちゅーはいさん + +- toc +{:toc} + +# Pipeworksとは + +{% assign data = site.data.mods-industry.pipeworks %} +{% include details-mod.md %} + +アイテムや水を輸送することを目的としたModです。また、輸送されたアイテムを使用する機械なども含まれています。 +MeseconsやTechnic等を組み合わせることにより様々なことが可能となるModです。 +ここでは主にアイテムの輸送に関連するアイテムを紹介します。 + +# 依存しているMod + +MeseconsとDigilinesに依存していますが、無い場合は必要な機能は無効化されます。 + +# 追加されるアイテム + +追加されるアイテムは大きく分けて3つの種類があります。 +※ それぞれのレシピは他のModの影響によって変更されることがあるので、Unified Inventory等を使用して確認してください。 + +
+
チューブ
+
アイテムの輸送経路となる各種機能を備えたアイテムです。
+ +
デバイス
+
チューブの接続先となるアイテムです。アイテムの搬出、搬入されたアイテムの格納・使用等を行います。
+ +
素材
+
チューブの材料となる各種素材です。
+
+ +## チューブ + +
+
Pneumatic tube segment
+
通常のチューブです。
+ +
Accelerating Pneumatic Tube Segment
+
このチューブは通過するアイテムの搬送速度を速めます。
+ +
Conducting Pneumatic Tube Segment
+
Mesecon信号を伝達することが出来るチューブです。
+ +
Crossing Pneumatic Tube Segment
+
+ このチューブを通過するアイテムは、曲がることなく全て直進します。
+ チューブが存在しない等の理由で直進が出来ない場合、その場にアイテムがドロップされます。
+ チューブを交差させる時に使用します。 +
+ +
Detecting Pneumatic Tube Segment
+
このチューブはアイテムが通過したときにMesecon信号を発信します。
+ +
Digiline Detecting Pneumatic Tube Segment
+
+ このチューブはアイテムが通過したときに指定されたChannelにDigiline信号を発信します。
+ 発信されるDigiline信号は"Mod名:アイテム名 個数"という形式の文字列です。 +
+ +
Vacuuming Pneumatic Tube Segment・Adjustable Vacuuming Pneumatic Tube Segment
+
+ 周囲にドロップされているアイテムを吸い込み搬送するチューブです。
+ Vacuuming Pneumatic Tube Segmentは2ノード固定、Adjustable Vacuuming Pneumatic Tube Segmentは
+ 右クリックで表示された設定画面で最大8ノードの距離を指定することが出来ます。 +
+ +
Sorting Pneumatic Tube Segment
+
+ 右クリックで表示された設定画面の内容に従い、アイテムの仕分けを行うチューブです。
+ また、ON/OFFを上手く設定することによりアイテムの搬送経路を制御することも出来ます。
+ 仕分けは次のように行われます。
+
+ 1. スイッチがONの方向が仕分け先候補に選別されます。
+ 2. 仕分け先候補の中に搬送されてきたアイテムが登録されている場合、その仕分け先に決定します。
+ 3. アイテムが登録されていない場合、何も登録されていない仕分け先候補全てが選択されます。
+ 4. 3で選択された候補の中から優先順位を元に仕分け先を決定します。
+ 5. 仕分け先が決定出来なかった場合、その場にアイテムがドロップされます。 +
+ +
One way tube
+
+ 一方通行のチューブです。矢印の方向にのみアイテムの搬送が可能となります。
+ 逆流させた場合はその場にアイテムがドロップされます。 +
+ +
High Priority Tube Segment
+
+ 搬送の優先順位(後述)が高いチューブです。主に搬送経路を固定したいときに使用します。
+ Sorting Pneumatic Tube Segmentでも同様な処理は可能ですが、こちらの方が処理が軽くなります。 +
+ +
Teleporting Pneumatic Tube Segment
+
+ アイテムを別のTeleporting Pneumatic Tube Segmentに転送するチューブです。
+ 右クリックで設定画面を表示し、チャンネルと受信の許可を設定出来ます。
+ この中を通過したアイテムは同じチャンネルで受信が許可されているチューブへと転送されます。
+ 受信が許可されているチャンネルが複数存在する場合、転送先はランダムに選択されます。
+ 転送先が存在しない場合はその場にアイテムがドロップされます。 +
+ +
Airtight steelblock embedded tube / Airtight panel embedded tube
+
+ 鉄ブロックやパネルの中をPneumatic tube segmentが通っています。
+ 主に壁や床にチューブを通したいときに使用します。 +
+
+ +## デバイス + +
+
Autocrafter
+
+ 設定されたレシピに従って自動的にアイテムをクラフトします。
+ クラフトを行うためにはレシピの登録と材料のセット、そしてスイッチをONにする必要があります。
+ それぞれのインベントリーの説明は以下のとおりとなります。
+ +
+
左上(3*3スロット)
+
ここにクラフトしたいアイテムのレシピを登録します。
+ +
レシピの隣(1スロット)
+
登録されたレシピに対応するアイテムが表示されます。
+ +
右上(4*3スロット)
+
ここにクラフトされた生成物が保存されます。
+ +
中央(8*3スロット)
+
ここに材料をセットします。
+
+ + チューブによって搬入されたアイテムは材料用のインベントリーへ搬入されます。
+ また、Filter-Injectorによって生成物の搬出が可能です。 +
+ +
Itemwise Filter-Injector / Stackwise Filter-Injector
+
+ 初期状態では左隣にあるノードのインベントリー(以下対象ノード)からアイテムを抽出し、チューブに搬出するデバイスです。
+ ItemwiseとStackwiseの違いは搬出されるアイテムの個数です。
+ Itemwiseは1つずつ、Stackwiseは指定された個数単位に纏めて搬出します。
+
+ Stackwiseでの個数の指定方法は、Prefer item typesに登録したアイテムの個数となりますが、
+ アイテムが未登録、または個数が1の場合は1スタック全てが対象となります。
+ また、Exact matchがONの時に対象ノードのアイテムの個数が不足している場合は搬出しません。
+ 個数チェックは対象ノード内の同一アイテムの合計でなく、各スタック単位でのチェックなので注意してください。
+
+ 抽出されるアイテムは以下の方法で選択されます。
+ 1. Prefer item typesの設定を元に、抽出対象となるアイテムの候補を選出します。
+ Prefer item typesが未設定の場合、全てのアイテムを抽出対象候補とします。
+ 2. 次に、設定されたモードに基づいて対象ノードのスロットを検索します。
+ モードは以下の3種類です。
+
    +
  • Sequence slots by Priority: 左上のスロットから検索します。
  • +
  • Sequence slots Randomly: ランダムに検索します。
  • +
  • Sequence slots by Rotation: 左上のスロットから検索し、搬出後は次のスロットから検索を再開します。
  • +
+ 3. 検索したスロットのアイテムが抽出対象かつ搬出個数の条件を満たしている場合、そのアイテムを搬出します。
+ 条件を満たしていない場合、次のスロットから検索を続けます。
+ 4. 全てのスロットを検索し、アイテムが存在しない場合はなにも搬出しません。
+
+ このデバイスはMesecon信号、及び左クリックにより動作を行います。 +
+ +
Digiline Filter-Injector
+
+ 受信したDigiline信号を元にアイテムを搬出するデバイスです。
+ LuaController等と組み合わせて使用します。
+ アイテム抽出のロジックはStackwise Filter-Injectorと同一となります。
+
+ Digiline信号の詳細についてはソースファイルやgitのログを参考にしてください。
+ 以下に例をあげておきます。
+
+
+
単純な文字列による指定
+
+

+          "default:wood 2" -- default:woodが2個
+        
+
+ +
テーブルによる指定その1
+
+

+          {
+            exmatch=false,      -- Exact matchがOFF
+            "default:wood 2",   -- default:woodが2個
+            "default:pine_wood" -- default:pine_woodが1個
+          }
+          
+
+ +
テーブルによる指定その2
+
+

+          {
+            slotseq="random",              -- Sequence slots Randomly
+            nofire=false,                  -- nofireがtrueの場合、アイテムを搬出しない
+            exmatch=true,                  -- Exact matchがON
+            {name="default:wood",count=2}, -- default:woodが2個
+            {name="default:pine_wood"},    -- default:pine_woodが1スタック全部
+            {group="wood", count=3}        -- woodグループのものが3個
+          }
+        
+
+
+ + このデバイスはDigiline信号により動作を行います。 +
+ +
Node Breaker
+
+ 正面にあるノードを破壊し、チューブに搬出するデバイスです。
+ ノードを破壊するときに使用するアイテムは標準ではMesePickAxeが、プレイヤーによってセットされた
+ アイテムが存在する場合は、そのアイテムの使用を試みます。
+ このデバイスはMesecon信号により動作を行います。 +
+ +
Deployer
+
+ 内部に保持しているアイテムを正面に設置するデバイスです。 + 設置するアイテムは3*3のスロットの左から右へ、上から下へと選択されます。 + チューブを使用することによりアイテムの補充が可能です。 + このデバイスはMesecon信号により動作を行います。 +
+ +
Dispenser
+
+ 内部に保持しているアイテムをドロップするデバイスです。
+ このデバイスはMesecon信号により動作を行います。 +
+ +
Trash Can
+
ゴミ箱です。中に入れられたアイテムは即座に消去されるので注意してください。
+ +
Furnace / Chest / Locked Chest
+
+ 上記のMinetest標準アイテムはチューブによる搬入とFilter-Injectorによる搬出に対応出来るように拡張されます。
+ Furnaceは燃料の搬入は底面から、素材の搬入はそれ以外からとなります。 +
+
+ +## 素材 + +
+
Oil extract
+
各種木の葉から抽出されたオイルです。Unprocessed paraffinの材料となります。
+ +
Unprocessed paraffin
+
Oil extractをかまどで処理することにより作成されるアイテムです。Plastic sheetの材料となります。
+ +
Plastic sheet
+
Unprocessed paraffinをかまどで処理することにより作成されるアイテムです。各種チューブの材料となります。
+
+ +# チューブとデバイスの優先順位について + +全てのチューブとデバイスには搬送の優先順位が存在します。 +搬送中のアイテムが存在するチューブに複数のチューブやデバイスが接続されている場合、接続されているものの中で +一番優先順位が高い方向にアイテムが搬送されます。 +一番優先順位が高いものが複数存在した場合は、それぞれに均等に振り分けられます。 + +例えば、一番優先順位が高いものが3つ(それぞれをABCとする)接続されている場合、一つ目の搬送アイテムがAに、 +二つ目の搬送アイテムがBに、三つ目の搬送アイテムがCに、四つ目のアイテムがAという具合に振り分けられます。 +アイテムのスタックが分割されるわけでは無いので注意してください。 + +チューブの優先順位は基本が50となり、One way tubeが75、そしてHigh Priority Tube Segmentが150となります。 +また、デバイスはTrash Canを除き全て100となります。Trash Canの優先順位は1で最下位となります。 diff --git a/wiki/mod-manuals/mod-manual-technic.md b/wiki/mod-manuals/mod-manual-technic.md new file mode 100644 index 0000000..1463c5a --- /dev/null +++ b/wiki/mod-manuals/mod-manual-technic.md @@ -0,0 +1,229 @@ +--- +title: Mod解説 - Technic +date: +--- + +工業Mod「Technic」の解説ページです。 +作成: ういんどさん + +- toc +{:toc} + +# Technicとは? + +{% assign data = site.data.mods-industry.technic %} +{% include details-mod.md %} + +「Technic」はMinetestの工業化Modです。 +『電力(EU)』という新しい仕組みを使って、いろいろな作業を自動化したり、新しい道具や機械を開発したりできます。 + +# 前提Mod + +「moreblocks」、「pipeworks」が必要となります。 +また、「mesecons」、「moreores」の素材も要求されるので、この2つも必要といって差し支えないです。 + +# 難しい?めんどくさい? + +どの程度の事を目標にするかによります。 +例えば、かまどや粉砕機を低電圧で動かす程度であれば、そこまで手間ではありません。 +金と銅とダイヤなどをある程度集めれば、鉱石を2倍の粉にした後、太陽光発電で燃料無しで精錬する、ぐらいはできます。 +(glinder(粉砕機)があると、1つの鉱石から2つのインゴットを作れたり、いろいろ便利です。オススメ) + +ただ、作業の効率化を求めていくと、道は長くなります。 +pipeworksとの連携には中電圧が必要となり、大量の『銅』や、追加鉱石『クロム』が要求されます。 +最終的な目標『原子力発電』には相当な手間がかかるようです。 +(……というかどれだけ大変なのか筆者もまだ把握できてません。そしてその電力の使い道もよく分かりません) + +結局、technicを「手段」にするか「目標」にするかによって変わってきます。 +『便利なかまど』レベルなら難しくないですし、『原子力発電』を目指すなら大きな目標になるでしょう。 + +# 最初のステップ + +technicの最初の回路を作るために必要なものを並べると… +「鉄」「銅」「スズ(tin)」「亜鉛(zinc)」「パピルス(もしくは紙)」「粘土(もしくはレンガブロック)」が主に必要となります。 +特にこのModでは銅の消費量がかなり多くなります。見つけたら積極的に掘りましょう。 +なお、後に作成する『粉砕機(glinder)』があれば1つの鉱石から2つのインゴットを作れるので、序盤は必要最低限の鉱石だけをかまどで焼くようにしましょう。 + +「レンガブロック」を8個ぐるりと配置すると、「燃料式合金かまど(Fuel-Fired Alloy Furnace)」ができます。 +このかまどでは、複数の金属インゴット/金属粉を混ぜて新しい合金を作ることができます。 + +これで「銅2個と亜鉛(Zinc)1個」を混ぜて「真鍮(Brass)3個」を作ります。 +また、普通のかまどで「鉄」をもう一度焼いて「錬鉄(CastIron)」を作ります。 +真鍮を真ん中に1個、錬鉄を周りに8個並べると「ケース(MachineCasing)」ができます。 +このケースは電気機械を作るのに必要です。ケースを作るのに合金がいるので、「燃料式合金かまど」はどうしても必要です。 +(電気式合金かまどの作成には合金が必要) + +# 回路に必要なもの + +回路には、「スイッチステーション(SwitchingStation)」「発電機(Generator)」「消費機器」「バッテリー」「電線」が必要です。 +また、回路には「LV(低電圧)」「MV(中電圧)」「HV(高電圧)」があり、それぞれ別の機械や電線が必要です。 +ただし、「スイッチステーション」だけはどの電圧でも共通で使えます。 + +
    +
  • + 「スイッチステーション」は各回路に1つ必ず必要です。また、「電線の真上」に配置する必要があります。
    + (他の機械は横からでも配線できますが、スイッチだけは配線方向が限られています)
    + スイッチステーションを見ると、回路の供給電力と消費電力が分かります。 +
  • + +
  • + 「発電機」にはいろいろな種類があります。 + +
      +
    • + 「火力発電(Fuel-Fired)」
      + 最も分かりやすく、製作コストも安いです。燃料を入れると燃焼時間の間発電します。
      + ただし、燃料が尽きれば発電が止まるうえに、消費先がなくても無駄に燃料を消費し続けます。 +
    • + +
    • + 「太陽光発電(Solar)」
      + 高い所に配置して太陽が届いていると発電します。
      + 厳密にいえば、「昼の間に」「一定の高さ以上で」「一定以上の明るさなら」発電します。
      + 高さ0以下では発電しません。高いところほど発電量が増えますが、ある程度の高さで頭打ちになります。 +
    • + +
    • + 「水力発電(Hydro)」は機械に水が、「地熱発電(Geothermal)」は水と溶岩の両方が隣接していれば発電し続けます。
      + 常に安定した供給を続けてくれるのですが、低電圧発電(LV) にしか対応していないのが難点です。 +
    • + +
    • + 「原子力発電(Nuclear)」は高電圧(HV)専用の発電です。性能は非常に高いのですが、製作コストが非常に高く、構造がややこしく、メルトダウンの危険もあるため、本解説書では取り扱いません。 +
    • +
    +
  • + +
  • + 「バッテリー」は電力を蓄え、供給してくれる機械です。
    + 厳密には必須ではないのですが、これがないと余った電力は消失し、逆に少しでも電力が不足すれば回路全体が停止するので、ほぼ必須といえます。
    + バッテリーは厳密にいえば「発電機」であり「消費機器」として扱われます。(もちろん容量の範囲で)
    + どの程度電力が溜まっているかは見た目でも判断できますし、ポイントすれば数値も分かります。
    + なお、つるはしなどで破壊すると充電分はリセットされます。 +
  • + +
  • + 「電線」は電力の伝達に使います。
    + 破壊、回収には剣か斧を使うと効率が良いです。(素手でも可能ですが少々時間がかかります) +
  • + +
  • + 「消費機器」は色々あるので別途記載します。
    + 電力を消費して色々なことをしてくれます。 +
  • +
+ +「ステーション」「発電機」「バッテリー」「消費機器」を電線で繋ぎ、十分に電力が確保されれば機械は作動します。 +(材料をクラフトする消費機器は、基本的に材料がセットされている時だけ電力を消費します) + +# 低電圧/中電圧/高電圧(LV/MV/HV) + +Technicの機械には、低電圧(LV)/中電圧(MV)/高電圧(HV)の3種類があります。 +これらは別の種類であり、低電圧のマシンを中電圧の発電機で動かすことは(基本的に)できません。 +基本的に電圧が高いほど、「発電効率」「消費電力」「動作速度」「製作コスト」が上昇します。 +多くの機械は、後からより高い電圧の機械にクラフトできます。 +(というか、高い電圧のマシンは低い電圧のマシンを材料にすることが多いです) + +# 色んな消費機械 + +(特に記載がなければ、低電圧/中電圧/高電圧の3種類全部にあります) + +
+
かまど(Furnace)
+
+ バニラのかまどと一緒ですが、燃料の代わりに電気で動きます。
+ pipeworksでの投入には中電圧以上が必要で、排出には更に「ControlLogicUnit」を付けることが必要になります。
+ (他のクラフト機械も同様) +
+ +
合金かまど(AlloyFurnace)
+
+ 電気で動く合金かまどです。
+ 「対応する2種類のインゴット」か「対応する2種類の粉末」を投入すると合金ができます。
+ インゴットを入れれば合金インゴット、粉を入れれば合金の粉ができます。
+ 石炭のようにインゴットの形にならないものと混ぜたいときは、あらかじめ粉砕機で粉にする必要があります。 +
+ +
粉砕機(Glinder)
+
+ このMod特有の非常に有効な機械です。燃料式のものはないので電気でのみ動きます。
+ 金属の鉱石を入れると、2倍の数の金属の粉(dust)になります。粉はかまどで焼くとインゴットになります。
+ 事実上、電気消費と引き換えに鉱石を2倍に増やしてくれます。(ダイヤモンドやMeseは無理です)
+ なお、インゴットを入れると、同数の粉になります。
+ 他にも、石炭、焼石、丸石、小麦の種など色々な物を粉砕できます。優先度の高い機械です。 +
+ +
抽出機(Extractor) 圧縮機(compressor)
+
+ 原料と電力を消費して新しいアイテムを作成します。主に機械の素材を作るのに使われる機械です。 +
+ +
遠心分離機(Centrifuge)
+
+ 中電圧(MV)のみの機械です。原料を、電力を消費して複数のアイテムに分離します。
+ 合金の粉を元々の粉に分離したり、物質の濃度を上げたりと色々なことに使います。
+ なお、仕様上、unifiedinventoryのレシピガイドに遠心分離機による分離レシピは表示されません。 +
+ +
工具修理箱(ToolWorkshop)
+
+ 中電圧(MV)のみの機械です。中に入れた道具の耐久値を電力を消費して回復させます。 +
+
+ +(以下の機械は使用経験がないので参考までに) +
+
(MusicBox)
+
+ 低電圧(LV)のみの機械です。特定のフォルダに入れた音楽を流せます。 +
+ +
(CNCMachine)
+
+ 低電圧(LV)のみの機械です。装飾用のブロックを作成します。 +
+ +
露天掘り機(Quarry)
+
+ 高電圧(HV)のみの機械です。電力を消費して、自動で採掘を行ってくれます。ただし、電力消費が莫大で速度も遅いです。 +
+
+ +# 追加鉱石 + +
+
鉛(lead)
+
+ 地表浅くから生成されます。見つかる量はそこそこ。使い道は未実装です。 +
+ +
亜鉛(zinc)
+
+ 地表浅くから生成されます。それなりに見つかる割に、要求量は少ないです。 +
+ +
硫黄(sulfur)
+
+ 地中の溶岩だまりの上にまとめて生成されます。やや見つけにくいですが、一度見つければ大量に入手できます。使い道は未実装です。 +
+ +
クロム(chromium)」
+
+ かなり地中深く(高度-100以下。ダイヤと同じぐらい)を掘らないと見つけられません。見つかる量も多くないです。中電圧以降の機械を作るのに要求されます。 +
+ +
ウラン(uranium)
+
+ ある程度の深さから生成されます。そこそこ見つかります。
+ 注意点は、ウラン鉱石ブロックの1マス以内にいるとダメージが発生することです。(ダメージは即座に解決され、後遺症はありません)
+ 掘ってアイテムにしてしまえばダメージはなくなります。ダメージが発生するのはブロックとして配置されている時だけです。
+ なお、金属ブロックとして配置した場合、近づくとダメージが発生し、威力・範囲ともにかなり大きくなります。
+ 用途は原子力発電用だけのようです。ただし、原子力発電をするためにはかなり大量に必要になります。
+ 粉状にして遠心分離機にかけると濃度が少しずつ上がります。
+ 初期の濃度は0.7%ですが、原子力発電には3.5%まで濃度を上げる必要があります。 +
+
+ +# 参考動画 + +Minetest Technic tutorial #1 - Basics diff --git a/wiki/mod-manuals/mod-manuals.md b/wiki/mod-manuals/mod-manuals.md new file mode 100644 index 0000000..f64d1e2 --- /dev/null +++ b/wiki/mod-manuals/mod-manuals.md @@ -0,0 +1,20 @@ +--- +title: Mod解説集 +date: +--- + +Modの解説ページの一覧です。 +Mod名をクリックで解説ページを開きます。 + +- toc +{:toc} + +# 工業 + +
+
Pipeworks
+
アイテムや水を運ぶことができるパイプを追加する。
+ +
Technic
+
工業化Mod。電力(EU)を使った自動化、工業化が行える。
+
diff --git a/wiki/mods/mods-decor.md b/wiki/mods/mods-decor.md new file mode 100644 index 0000000..8c17fe7 --- /dev/null +++ b/wiki/mods/mods-decor.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - 装飾 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-decor +%} diff --git a/wiki/mods/mods-farming.md b/wiki/mods/mods-farming.md new file mode 100644 index 0000000..500107a --- /dev/null +++ b/wiki/mods/mods-farming.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - 農業 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-farming +%} diff --git a/wiki/mods/mods-food.md b/wiki/mods/mods-food.md new file mode 100644 index 0000000..9fd7599 --- /dev/null +++ b/wiki/mods/mods-food.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - 食べ物 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-food +%} diff --git a/wiki/mods/mods-industry.md b/wiki/mods/mods-industry.md new file mode 100644 index 0000000..7d81808 --- /dev/null +++ b/wiki/mods/mods-industry.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - 工業 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-industry +%} diff --git a/wiki/mods/mods-mapgen.md b/wiki/mods/mods-mapgen.md new file mode 100644 index 0000000..977b883 --- /dev/null +++ b/wiki/mods/mods-mapgen.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - マップ生成 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-mapgen +%} diff --git a/wiki/mods/mods-mob.md b/wiki/mods/mods-mob.md new file mode 100644 index 0000000..9d2186b --- /dev/null +++ b/wiki/mods/mods-mob.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - Mob +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-mob +%} diff --git a/wiki/mods/mods-other.md b/wiki/mods/mods-other.md new file mode 100644 index 0000000..6973f6d --- /dev/null +++ b/wiki/mods/mods-other.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - その他 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-other +%} diff --git a/wiki/mods/mods-tool.md b/wiki/mods/mods-tool.md new file mode 100644 index 0000000..25ca4c2 --- /dev/null +++ b/wiki/mods/mods-tool.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - 道具 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-tool +%} diff --git a/wiki/mods/mods-vehicle.md b/wiki/mods/mods-vehicle.md new file mode 100644 index 0000000..e92981a --- /dev/null +++ b/wiki/mods/mods-vehicle.md @@ -0,0 +1,11 @@ +--- +title: Modリスト - 乗り物 +--- + +- toc +{:toc} + +{% include list-details.md + type = "mod" + list = site.data.mods-vehicle +%} diff --git a/wiki/ores.md b/wiki/ores.md new file mode 100644 index 0000000..b94df60 --- /dev/null +++ b/wiki/ores.md @@ -0,0 +1,68 @@ +--- +title: 鉱石 +date: +--- + +- toc +{:toc} + +# 鉱石について + +鉱石は地中の石に混ざって生成されます。砂漠の石には生成されません。 + +# 鉱石の詳細 + +|鉱石名|入手物|最低限必要なつるはし|主な生成地点(y座標)| +|--|--|--|--| +|石炭鉱石|石炭|木のつるはし|64| +|鉄鉱石|鉄|石のつるはし|0| +|銅鉱石|銅|石のつるはし|-16| +|金鉱石|金|石のつるはし|-64| +|Mese鉱石|Meseクリスタル|鉄のつるはし|-64| +|ダイヤモンド鉱石|ダイヤモンド|鉄のつるはし|-128| +|Meseブロック|Meseブロック|鉄のつるはし|-1024| + +# 鉱石・金属の特徴 + +
+
石炭
+
+ 主に松明の原料、またはかまどを動かす燃料に使われる。
+ (なお、木炭は特定のModを導入しないと作れないことに注意) +
+ +
+
+ ドロップしたままでは使えず、かまどで精錬することによって鉄インゴットとなる。
+ 主に道具の材料として使われる。鉄製の道具は石製よりかなり性能が良い。 +
+ +
+
+ ドロップしたままでは使えず、かまどで精錬すると銅インゴットとなる。
+ さらに、鉄インゴットと銅インゴットをクラフトすることによって青銅インゴットとなる。
+ 青銅製の道具は鉄製とほぼ同じ性能で、耐久が少し高い。
+ 銅インゴットの状態では道具を作れないが、銅に色々な使い道を追加するModもある。 +
+ +
+
+ ドロップしたままでは使えず、かまどで精錬すると金インゴットとなる。
+ 金インゴットから道具は作れないが、金に色々な使い道を追加するModもある。 +
+ +
Mese
+
+ 魔法の力をもつ宝石。
+ ドロップしたままで道具の素材として使える。
+ Mese製の道具は鉄製よりもさらに性能が高い。また、耐久はダイヤモンドより高い。
+ また、Meseに色々な使い道を追加するModがある。
+ 特に「Mesecons」というModを導入すると、Meseを使って回路を組むことができる。 +
+ +
ダイヤモンド
+
+ ドロップしたままで道具の素材として使える。
+ ダイヤモンド製の道具はMese製よりもさらに性能が高い。 +
+
diff --git a/wiki/privileges.md b/wiki/privileges.md new file mode 100644 index 0000000..01dbac0 --- /dev/null +++ b/wiki/privileges.md @@ -0,0 +1,96 @@ +--- +title: 権限 +date: +--- + +実装されている権限の一覧です。 +MinetestおよびMinetest Gameで利用できるもののみを掲載しています。 + +権限はプレイヤーの実行できる操作を管理する機能です。 +コマンド実行などの操作で要求されます。 + +プレイヤーの権限を変更するには[grantコマンド](commands#grant)と[revokeコマンド](commands#revoke)を使用します。 + +- toc +{:toc} + +# Minetest + +## interact + +ブロックの破壊や設置に必要な権限。 +シングルプレイ時に自動的に与えられる。 + +## shout + +チャットでの会話に必要な権限。 +シングルプレイ時に自動的に与えられる。 + +## basic_privs + +[interact](#interact)と[shout](#shout)を包括した権限。 +basic_privs設定から含む権限を変更することが可能。 +シングルプレイ時に自動的に与えられる。 + +## privs + +権限の変更に必要な権限。 +シングルプレイ時に自動的に与えられる。 + +## teleport + +[teleportコマンド](commands#teleport)の実行に必要な権限。 + +## bring + +[teleportコマンド](commands#teleport)を他のプレイヤーへ使用する場合に必要な権限。 + +## settime + +[timeコマンド](commands#time)で時間を変更する場合に必要な権限。 + +## server + +[setコマンド](commands#set)や[shutdownコマンド](commands#shutdown)などのサーバ操作に必要な権限。 + +## protection_bypass + +ブロックの保護を回避するための権限。 + +## ban + +[banコマンド](commands#ban)と[unbanコマンド](commands#unban)の実行に必要な権限。 + +## kick + +[kickコマンド](commands#kick)の実行に必要な権限。 + +## give + +[giveコマンド](commands#give)と[givemeコマンド](commands#giveme)の実行に必要な権限。 + +## password + +[setpasswordコマンド](commands#setpassword)と[clearpasswordコマンド](commands#clearpassword)の実行に必要な権限。 + +## fly + +飛行モードに必要な権限。 + +## fast + +高速移動モードに必要な権限。 + +## noclip + +飛行モード時のすり抜けに必要な権限。 + +## rollback + +ロールバック操作に必要な権限。 + +# Minetest Game + +## home + +[homeコマンド](commands#home)と[sethomeコマンド](commands#sethome)の実行に必要な権限。 diff --git a/wiki/questions.md b/wiki/questions.md new file mode 100644 index 0000000..5d85895 --- /dev/null +++ b/wiki/questions.md @@ -0,0 +1,58 @@ +--- +title: よくある質問 +date: +--- + +- toc +{:toc} + +# Minetestの更新方法が分からない + +**Windows** + +古いバージョンから以下のファイルとフォルダを移動してください。 + +
+
ファイル:
+
minetest.conf
+ +
フォルダ:
+
worlds
+
mods (Modを導入している場合)
+
textures (テクスチャパックを導入している場合)
+
games (サブゲームを導入している場合のみ移動、中のminetest_gameフォルダは移動しない)
+
+ +**その他** + +パッケージマネージャーで新しいパッケージをインストールしてください。 + +# 日本語が入力できない + +**Windows** + +入力したい文字列をコピーし、F10キーのコンソール画面にCtrl+Vで貼り付けてください。 + +**その他** + +できません。Windowsからの日本語メッセージも表示されません。 + +# 画面の明るさを変えたい + +詳細設定メニューの「グラフィック > ゲーム内 > 詳細 > ガンマ」から変更できます。 + +# 空の飛び方が分からない + +コマンドで +``` +/grantme fly +``` +を実行し、Kキーを押してください。 + +# 敵・動物がいない + +Modで追加できます。 + +# TNTの爆破範囲を変えたい + +詳細設定メニューの「ゲーム > Minetest Game > TNT radius」から変更できます。 diff --git a/wiki/smelting.md b/wiki/smelting.md new file mode 100644 index 0000000..570d85c --- /dev/null +++ b/wiki/smelting.md @@ -0,0 +1,68 @@ +--- +title: 精錬 +date: +--- + +- toc +{:toc} + +# かまどの使い方 + +1.左下の枠に燃料、左上に精錬するアイテムを置く。 +2.すると、真ん中の矢印が左から右へ白くなるので、しばらく待つ。 +3.矢印が完全に白くなったら精錬完了。完成品が右側に表示される。 +- 左の炎の模様は「燃料の残量」を表しており、精錬できる時間の目安となる。 +- 精錬が終わった時に燃料と素材が余っている場合は自動的に次の精錬が始まる。 + +# 燃料 + +|燃料|燃焼時間(秒)|燃焼効率| +|--|--|--| +|石炭ブロック|370|123​⅓| +|溶岩入りバケツ(溶岩のみ消費)|60|20| +|溶岩|60|20| +|石炭|40|13​⅓| +|Meseブロック|30|10| +|本棚|30|10| +|原木|30|10| +|木のドア|30|10| +|チェスト|30|10| +|鍵付きのチェスト|30|10| +|サボテン|15|5| +|フェンス|15|5| +|看板|10|3​⅓| +|苗木|10|3​⅓| +|ジャングルの苗木|10|3​⅓| +|木材|7|2​⅓| +|はしご|5|1​⅔| +|松明|4|1​⅓| +|りんご|3|1| +|ジャングルの草|2|⅔| +|草|2|⅔| +|葉|1|0.5| +|パピルス|1|0.5| +|Nyan Cat|1|0.5| +|Nyan Catの虹|1|0.5| + +- 燃焼効率は、その燃料1つでいくつの素材を精錬できるか表すもの。 +- 燃料は精錬が始まった瞬間に消費され、燃焼時間を過ぎるまで燃え続ける。 + +# レシピ + +|素材|完成品| +|--|--| +|小麦粉|パン| +|丸石|石| +|苔石|石| +|砂漠の丸石|砂漠の石| +|粘土|レンガ| +|銅|銅インゴット| +|金|金インゴット| +|鉄|鉄インゴット| +|鉄のボトル|鉄インゴット| +|砂|ガラス| +|ガラスの欠片|ガラス| +|黒曜石の欠片|黒曜石ガラス| + +- パンは必ず調理時間が15秒かかる +- ※木炭はModを導入しないと作れない diff --git a/wiki/subgames.md b/wiki/subgames.md new file mode 100644 index 0000000..d907426 --- /dev/null +++ b/wiki/subgames.md @@ -0,0 +1,11 @@ +--- +title: サブゲーム +--- + +- toc +{:toc} + +{% include list-details.md + type = "subgame" + list = site.data.subgames +%} diff --git a/wiki/texturepacks.md b/wiki/texturepacks.md new file mode 100644 index 0000000..df462b2 --- /dev/null +++ b/wiki/texturepacks.md @@ -0,0 +1,11 @@ +--- +title: テクスチャパック +--- + +- toc +{:toc} + +{% include list-details.md + type = "texturepack" + list = site.data.texturepacks +%} diff --git a/wiki/tools/tools-mapper.md b/wiki/tools/tools-mapper.md new file mode 100644 index 0000000..e5f4d28 --- /dev/null +++ b/wiki/tools/tools-mapper.md @@ -0,0 +1,11 @@ +--- +title: ツール - マッパー +--- + +- toc +{:toc} + +{% include list-details.md + type = "tool" + list = site.data.tools-mapper +%} diff --git a/wiki/tools/tools-mod-development.md b/wiki/tools/tools-mod-development.md new file mode 100644 index 0000000..55f6193 --- /dev/null +++ b/wiki/tools/tools-mod-development.md @@ -0,0 +1,11 @@ +--- +title: ツール - Mod開発補助 +--- + +- toc +{:toc} + +{% include list-details.md + type = "tool" + list = site.data.tools-mod-development +%} diff --git a/wiki/tools/tools-mod-installer.md b/wiki/tools/tools-mod-installer.md new file mode 100644 index 0000000..13d82c2 --- /dev/null +++ b/wiki/tools/tools-mod-installer.md @@ -0,0 +1,11 @@ +--- +title: ツール - Mod導入補助 +--- + +- toc +{:toc} + +{% include list-details.md + type = "tool" + list = site.data.tools-mod-installer +%} diff --git a/wiki/troubleshooting.md b/wiki/troubleshooting.md new file mode 100644 index 0000000..6b1d5e5 --- /dev/null +++ b/wiki/troubleshooting.md @@ -0,0 +1,38 @@ +--- +title: トラブルシューティング +date: +--- + +- toc +{:toc} + +# 起動しない・ワールドに入れない (Windows) + +フォルダ名に日本語が含まれています。フォルダ階層を英数字のみにしてください。 +もしくはCドライブ直下に保存してください。 + +# ブロックが赤い + +グラフィックカードがシェーダーに対応していません。 +設定からシェーダーを無効にしてください。 + +# エラーメッセージの一覧 + +## Failed to enable mod + +Modのフォルダ名に記号が入っています。 +記号を削除してください。 + +## Failed to load and run + +Modのフォルダ名が間違っているか、Mod自体に不具合があります。 + +## Generating dummy image + +テクスチャが存在しない場合に表示されます。 +ゲームプレイに支障はありませんが、一部のグラフィックが正しく表示されない場合があります。 + +## Unresolved name conflicts for mods + +同じ名前のModが複数保存されている際に表示されます。 +重複しているModを削除してください。 diff --git a/wiki/videos.md b/wiki/videos.md new file mode 100644 index 0000000..9ab2993 --- /dev/null +++ b/wiki/videos.md @@ -0,0 +1,51 @@ +--- +title: 動画紹介 +date: +--- + + + +- toc +{:toc} + +# [AndroidNo32](http://minetest-test-nikki-youtube.blogspot.jp) + +[[Minetest] 隠し扉 [Mesecons]](https://www.youtube.com/watch?v=ktCBBBb3kH0) +[[Minetest] ハロウィンなので・・・動画です  [ゆっくり]](https://www.youtube.com/watch?v=6kBpsFHuN7M) +[[Minetest]MOD紹介[額縁MOD]内装の第4回](https://www.youtube.com/watch?v=j_v7NrTYenU) +[ノートPCで録画[Minetest]テスト動画](https://www.youtube.com/watch?v=CFNI8R16qKA) +[[Minetest]MOD紹介[シャッターMOD]内装の第3回](https://www.youtube.com/watch?v=W_VrIL_Qdmg) +[([Minetest]MOD紹介[時計MOD]内装の第2回](https://www.youtube.com/watch?v=HA66agPuz0c) +[[Minetest]MOD紹介[煙突MOD]内装の第1回](https://www.youtube.com/watch?v=3v8v2mYMX2w) +[[Minetest]MOD紹介[mywoodslopes]と建築(家)](https://www.youtube.com/watch?v=k_ZuBYeFXZQ) +[[Minetest] MOD紹介 [Door2MOD] 速報版](https://www.youtube.com/watch?v=b61-QLpZbh0) +[[Minetest] MOD紹介 [CopyPot]](https://www.youtube.com/watch?v=oXNjitrjYE4) +[[Minetest] Mesecons 隠し扉を作ってみた](https://www.youtube.com/watch?v=U6VzHCQYJ_0) +[[Minetest] 初マルチでテスト](https://www.youtube.com/watch?v=uXjghBrJFdk) +[[Minetest]MOD紹介 特別編 椅子とテーブル](https://www.youtube.com/watch?v=swZ01q-Z6k0) +[Minetest Mesecons MOD紹介](https://www.youtube.com/watch?v=aL4_7EQxTfM) +[Minetest [木炭と木こり] MOD紹介](https://www.youtube.com/watch?v=vjftNfmmYsg) +[Minetest ワールド作成編](https://www.youtube.com/watch?v=P3BNvCdaqLk) +[Minetest 実況(テスト)](https://www.youtube.com/watch?v=9bqhrEJxZEE) + +# kuramubon + +[minetestを楽しもう! part3 Commandを使う](https://www.youtube.com/watch?v=8A7iE8re-PM) +[minetestを楽しもう! part2 Modの導入の仕方 その2](https://www.youtube.com/watch?v=r97fUpRGfn4) +[(minetestを楽しもう! part1 Modの導入の仕方 その1](https://www.youtube.com/watch?v=G_W_G-56f3g) +[minecraftもどきminetestはこんなのだ!](https://www.youtube.com/watch?v=SpJqFMmcqFk) + +# 七篠としあき + +[【MINETEST】夢はダイアモンド part2](https://www.youtube.com/watch?v=weAmt83Gi9s) +[【MINETEST】夢はダイアモンド part1](https://www.youtube.com/watch?v=LsoSoEa5WdE) + +# Duroom Zacc + +[Minetest 建築修行 弐 ~市役所的な何か~](https://www.youtube.com/watch?v=2WYo2msN08Q) +[Minetest 建築修行 壱 〜街を作りたい〜](https://www.youtube.com/watch?v=07Ul1yYdGs4) + +# Reokuzu + +[minetest_play_マインテスト紹介実況](https://www.youtube.com/watch?v=mhTAADHF2Kg) +[minetest_マインテスト_testvideo_テスト動画_フリーゲーム](https://www.youtube.com/watch?v=fTpnS1Pp5Ck)