ディレクトリ構成を変更

content-*.mdをcontent.mdに統合
gh-pages
Rui 2019-07-03 23:30:04 +09:00
parent f49aebb840
commit a6408e6a76
120 changed files with 289 additions and 492 deletions

View File

@ -8,5 +8,5 @@
```
bundle install --path vendor/bundle
bundle exec jekyll serve --baseurl ""
bundle exec jekyll serve --baseurl "$PWD/_site"
```

View File

@ -18,7 +18,7 @@ minetest:
wiki:
# 画像フォルダのパス
img_dir: "img"
img_dir: "imgs"
# テーマカラー
# モバイル版Chromeのタブ色に使用される
theme_color: "#fff"
@ -29,7 +29,6 @@ media-desktop: "all and (min-width: 768px)"
# モバイル端末判定
media-mobile: "not all and (min-width: 768px)"
### Jekyllの設定 ###
# Jekyllから除外するファイル
@ -52,18 +51,19 @@ sass:
compress_html:
comments: all
collections:
pages:
output: true
permalink: /:path
defaults:
-
# 設定を適用するパス
scope:
path: "wiki"
path: ""
type: "pages"
values:
# レイアウト名
date: 2018-1-1
layout: "default"
# ページのURL
# Markdown名をそのまま使用
# サブディレクトリ無し
permalink: ":basename"
# SEO対策
seo:
type: "WebSite"

View File

@ -8,7 +8,7 @@ links:
url: "https://github.com/minetest-mods/pipeworks/wiki"
-
text: "解説ページ"
url: "mod-manual-pipeworks"
url: "%BASEURL%/modmanual/pipeworks.html"
-
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=2155"

View File

@ -8,7 +8,7 @@ links:
url: "http://technic.kosyak.info/"
-
text: "解説ページ"
url: "mod-manual-technic"
url: "%BASEURL%/modmanual/technic.html"
-
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=2538"

View File

@ -1,6 +1,5 @@
{% comment %}
引数:
type: 表示するコンテンツの種類
list: 表示するデータのリスト
キー: アンカー名
値: データ:
@ -15,13 +14,10 @@
<!-- anchorsを空白で区切ってソート -->
{% assign sorted-anchors = anchors | split: " " | sort %}
<!-- detailsタイプからテンプレートファイル名を作成 -->
{% capture template-name %}content-{{ include.type }}.md{% endcapture %}
<!-- ソートしたアンカー順でリスト展開 -->
<!-- NOTE: Markdownはインデントできないのでforの中身はインデントなし -->
{% for anchor in sorted-anchors %}
{% assign content-data = include.list[anchor] %}
# {{ content-data.name }} {#{{ anchor }}}
{% include {{ template-name }} data=content-data %}
{% include content.md data=content-data %}
{% endfor %}

View File

@ -1,39 +0,0 @@
<!-- 渡されてきたデータ -->
{% assign data = include.data %}
<!-- 空のリストを作成 -->
{% assign details = "" | split: "|" %}
<!-- 製作者 -->
{% if data.author %}
{% assign author = "" | split: "|" %}
{% assign author = author | push: "製作者" %}
{% assign author = author | push: data.author %}
{% assign details = details | push: author %}
{% endif %}
<!-- 説明 -->
{% if data.description %}
{% assign description = "" | split: "|" %}
{% assign description = description | push: "説明" %}
{% assign description = description | push: data.description %}
{% assign details = details | push: description %}
{% endif %}
<!-- リンク -->
{% if data.links %}
{% capture link_list %}
{% for link_data in data.links %}
{% if forloop.first != true %}/{% endif %}
<a href="{{ link_data.url }}">{{ link_data.text }}</a>
{% endfor %}
{% endcapture %}
{% assign links = "" | split: "|" %}
{% assign links = links | push: "リンク" %}
{% assign links = links | push: link_list %}
{% assign details = details | push: links %}
{% endif %}
<!-- テンプレートをインクルード -->
{% include content.md screenshot=data.screenshot details=details %}

View File

@ -1,75 +0,0 @@
<!-- 渡されてきたデータ -->
{% assign data = include.data %}
<!-- 空のリストを作成 -->
{% assign details = "" | split: "|" %}
<!-- 依存Mod -->
{% if data.depends %}
{% capture depend_list %}
{% for depend in data.depends %}
{% if depend.url %}
<a href="{{ depend.url }}">{{ depend.text }}</a>{% 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 %}
<!-- 対応・連携可能Mod -->
{% if data.depends-optional %}
{% capture optionally_depend_list %}
{% for depend in data.depends-optional %}
{% if depend.url %}
<a href="{{ depend.url }}">{{ depend.text }}</a>{% 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 %}
<!-- 開発者 -->
{% if data.author %}
{% assign author = "" | split: "|" %}
{% assign author = author | push: "開発者" %}
{% assign author = author | push: data.author %}
{% assign details = details | push: author %}
{% endif %}
<!-- 説明 -->
{% if data.description %}
{% assign description = "" | split: "|" %}
{% assign description = description | push: "説明" %}
{% assign description = description | push: data.description %}
{% assign details = details | push: description %}
{% endif %}
<!-- リンク -->
{% if data.links %}
{% capture link_list %}
{% for link_data in data.links %}
{% if forloop.first != true %}/{% endif %}
<a href="{{ link_data.url }}">{{ link_data.text }}</a>
{% endfor %}
{% endcapture %}
{% assign links = "" | split: "|" %}
{% assign links = links | push: "リンク" %}
{% assign links = links | push: link_list %}
{% assign details = details | push: links %}
{% endif %}
<!-- テンプレートをインクルード -->
{% include content.md screenshot=data.screenshot details=details %}

View File

@ -1,39 +0,0 @@
<!-- 渡されてきたデータ -->
{% assign data = include.data %}
<!-- 空のリストを作成 -->
{% assign details = "" | split: "|" %}
<!-- 開発者 -->
{% if data.author %}
{% assign author = "" | split: "|" %}
{% assign author = author | push: "開発者" %}
{% assign author = author | push: data.author %}
{% assign details = details | push: author %}
{% endif %}
<!-- 説明 -->
{% if data.description %}
{% assign description = "" | split: "|" %}
{% assign description = description | push: "説明" %}
{% assign description = description | push: data.description %}
{% assign details = details | push: description %}
{% endif %}
<!-- リンク -->
{% if data.links %}
{% capture link_list %}
{% for link_data in data.links %}
{% if forloop.first != true %}/{% endif %}
<a href="{{ link_data.url }}">{{ link_data.text }}</a>
{% endfor %}
{% endcapture %}
{% assign links = "" | split: "|" %}
{% assign links = links | push: "リンク" %}
{% assign links = links | push: link_list %}
{% assign details = details | push: links %}
{% endif %}
<!-- テンプレートをインクルード -->
{% include content.md screenshot=data.screenshot details=details %}

View File

@ -1,39 +0,0 @@
<!-- 渡されてきたデータ -->
{% assign data = include.data %}
<!-- 空のリストを作成 -->
{% assign details = "" | split: "|" %}
<!-- 製作者 -->
{% if data.author %}
{% assign author = "" | split: "|" %}
{% assign author = author | push: "製作者" %}
{% assign author = author | push: data.author %}
{% assign details = details | push: author %}
{% endif %}
<!-- 説明 -->
{% if data.description %}
{% assign description = "" | split: "|" %}
{% assign description = description | push: "説明" %}
{% assign description = description | push: data.description %}
{% assign details = details | push: description %}
{% endif %}
<!-- リンク -->
{% if data.links %}
{% capture link_list %}
{% for link_data in data.links %}
{% if forloop.first != true %}/{% endif %}
<a href="{{ link_data.url }}">{{ link_data.text }}</a>
{% endfor %}
{% endcapture %}
{% assign links = "" | split: "|" %}
{% assign links = links | push: "リンク" %}
{% assign links = links | push: link_list %}
{% assign details = details | push: links %}
{% endif %}
<!-- テンプレートをインクルード -->
{% include content.md screenshot=data.screenshot details=details %}

View File

@ -1,47 +0,0 @@
<!-- 渡されてきたデータ -->
{% assign data = include.data %}
<!-- 空のリストを作成 -->
{% assign details = "" | split: "|" %}
<!-- プラットフォーム -->
{% if data.platform %}
{% assign platform = "" | split: "|" %}
{% assign platform = platform | push: "プラットフォーム" %}
{% assign platform = platform | push: data.platform %}
{% assign details = details | push: platform %}
{% endif %}
<!-- 開発者 -->
{% if data.author %}
{% assign author = "" | split: "|" %}
{% assign author = author | push: "開発者" %}
{% assign author = author | push: data.author %}
{% assign details = details | push: author %}
{% endif %}
<!-- 説明 -->
{% if data.description %}
{% assign description = "" | split: "|" %}
{% assign description = description | push: "説明" %}
{% assign description = description | push: data.description %}
{% assign details = details | push: description %}
{% endif %}
<!-- リンク -->
{% if data.links %}
{% capture link_list %}
{% for link_data in data.links %}
{% if forloop.first != true %}/{% endif %}
<a href="{{ link_data.url }}">{{ link_data.text }}</a>
{% endfor %}
{% endcapture %}
{% assign links = "" | split: "|" %}
{% assign links = links | push: "リンク" %}
{% assign links = links | push: link_list %}
{% assign details = details | push: links %}
{% endif %}
<!-- テンプレートをインクルード -->
{% include content.md screenshot=data.screenshot details=details %}

View File

@ -1,16 +1,10 @@
{% comment %}
引数:
screenshot: スクリーンショット画像名
details: 情報のリスト
キー: <dt>に表示される見出し
値: <dd>に表示される説明
{% endcomment %}
<!-- 渡されてきたデータ -->
{% assign data = include.data %}
{% capture IMAGE_DIR %}{{ site.url }}/{{ site.wiki.img_dir }}{% endcapture %}
{% assign IMAGE_ALT = "スクリーンショット" %}
{% if include.screenshot %}
{% assign screenshot = IMAGE_DIR | append: include.screenshot %}
{% if data.screenshot %}
{% capture IMAGE_DIR %}{{ site.baseurl }}/{{ site.wiki.img_dir }}{% endcapture %}
{% assign IMAGE_ALT = "スクリーンショット" %}
{% assign screenshot = IMAGE_DIR | append: data.screenshot %}
<amp-img
class = "screenshot"
layout = "responsive"
@ -23,8 +17,61 @@
{% endif %}
<dl>
{% for detail in include.details %}
<dt>{{ detail[0] }}</dt>
<dd>{{ detail[1] }}</dd>
{% endfor %}
{% if data.platform %}
<dt>プラットフォーム</dt>
<dd>{{ data.platform }}</dd>
{% endif %}
{% if data.depends %}
{% capture depend_list %}
{% for depend in data.depends %}
{% if depend.url %}
<a href="{{ depend.url }}">{{ depend.text }}</a>{% if forloop.last != true %},{% endif %}
{% else %}
{{ depend.text }}{% if forloop.last != true %},{% endif %}
{% endif %}
{% endfor %}
{% endcapture %}
<dt>依存Mod</dt>
<dd>{{ depend_list }}</dd>
{% endif %}
{% if data.depends-optional %}
{% capture optionally_depend_list %}
{% for depend in data.depends-optional %}
{% if depend.url %}
<a href="{{ depend.url }}">{{ depend.text }}</a>{% if forloop.last != true %},{% endif %}
{% else %}
{{ depend.text }}{% if forloop.last != true %},{% endif %}
{% endif %}
{% endfor %}
{% endcapture %}
<dt>依存Mod(任意)</dt>
<dd>{{ optionally_depend_list }}</dd>
{% endif %}
{% if data.author %}
<dt>開発者・製作者</dt>
<dd>{{ data.author }}</dd>
{% endif %}
{% if data.description %}
<dt>説明</dt>
<dd>{{ data.description }}</dd>
{% endif %}
{% if data.links %}
{% capture link_list %}
{% for link_data in data.links %}
{% if forloop.first != true %}/{% endif %}
{% assign url = link_data.url | replace: "%BASEURL%", site.baseurl %}
<a href="{{ url }}">{{ link_data.text }}</a>
{% endfor %}
{% endcapture %}
<dt>リンク</dt>
<dd>{{ link_list }}</dd>
{% endif %}
</dl>

View File

@ -1,88 +1,88 @@
{% comment %}<h*>にidを振らない。AMP Validation対策{% endcomment %}
{::options auto_ids="false" /}
[トップページ]({{ site.url }})
[トップページ]({{ site.baseurl }}/index.html)
<br>
[掲示板](http://minetest.bbs.fc2.com)
# Minetest
[ダウンロード](downloads)
[ダウンロード]({{ site.baseurl }}/downloads.html)
<br>
[アップデート情報](changelog)
[アップデート情報]({{ site.baseurl }}/changelog.html)
<br>
[よくある質問とトラブルシューティング](questions)
[よくある質問とトラブルシューティング]({{ site.baseurl }}/questions.html)
# ゲームデータ
[コマンド](commands)
[コマンド]({{ site.baseurl }}/game/commands.html)
<br>
[権限](privileges)
[権限]({{ site.baseurl }}/game/privileges.html)
## Minetest Game
{% comment %}
まだ未作成
[ブロック](blocks)
[ブロック]({{ site.baseurl }}/game/blocks.html)
<br>
[アイテム](items)
[アイテム]({{ site.baseurl }}/game/items.html)
<br>
[クラフト](crafts)
[クラフト]({{ site.baseurl }}/game/crafts.html)
<br>
{% endcomment %}
[ブロック(公式Wiki)](https://wiki.minetest.net/Blocks/ja)
<br>
[アイテム(公式Wiki)](https://wiki.minetest.net/Items/ja)
<br>
[農業](farming)
[農業]({{ site.baseurl }}/game/farming.html)
<br>
[鉱石](ores)
[鉱石]({{ site.baseurl }}/game/ores.html)
<br>
[精錬](smelting)
[精錬]({{ site.baseurl }}/game/smelting.html)
# カスタマイズ
[Modの導入方法](mod-installing)
[Modの導入方法]({{ site.baseurl }}/mod-installing.html)
<br>
[Mod解説集](mod-manuals)
[Mod解説集]({{ site.baseurl }}/modmanual/index.html)
<br>
[テクスチャパック](texturepacks)
[テクスチャパック]({{ site.baseurl }}/content/texturepack.html)
<br>
[サブゲーム](subgames)
[サブゲーム]({{ site.baseurl }}/content/subgame.html)
<br>
[配布マップ](maps)
[配布マップ]({{ site.baseurl }}/content/map.html)
# Modリスト
[工業](mods-industry)
[工業]({{ site.baseurl }}/content/industry.html)
<br>
[農業](mods-farming)
[農業]({{ site.baseurl }}/content/farming.html)
<br>
[装飾](mods-decor)
[装飾]({{ site.baseurl }}/content/decor.html)
<br>
[道具](mods-tool)
[道具]({{ site.baseurl }}/content/tool.html)
<br>
[Mob](mods-mob)
[Mob]({{ site.baseurl }}/content/mob.html)
<br>
[食べ物](mods-food)
[食べ物]({{ site.baseurl }}/content/food.html)
<br>
[乗り物](mods-vehicle)
[乗り物]({{ site.baseurl }}/content/vehicle.html)
<br>
[マップ生成](mods-mapgen)
[マップ生成]({{ site.baseurl }}/content/mapgen.html)
<br>
[その他](mods-other)
[その他]({{ site.baseurl }}/content/other-mods.html)
# ツール
[マップ関連ツール](tools-map)
[マップ関連ツール]({{ site.baseurl }}/tool/map.html)
<br>
[Mod導入補助ツール](tools-mod-installer)
[Mod導入補助ツール]({{ site.baseurl }}/tool/mod-installer.html)
<br>
[Mod開発補助ツール](tools-mod-development)
[Mod開発補助ツール]({{ site.baseurl }}/tool/mod-development.html)
# その他
[関連動画紹介](videos)
[関連動画紹介]({{ site.baseurl }}/videos.html)
# 外部リンク

View File

@ -1,7 +1,7 @@
:root {
--border-common: 1px solid #ccc;
--bg: url({{ site.url }}/{{ site.wiki.img_dir }}/background.png);
--bg: url({{ site.baseurl }}/{{ site.wiki.img_dir }}/background.png);
--color: #333;
--color-link: #588f3d;
--color-link-visited: #456336;

View File

@ -11,7 +11,7 @@ layout: compress
{% assign style = style_scss | scssify %}
{% comment %}アイコンのURL{% endcomment %}
{% capture icon_url %}{{ site.url }}/{{ site.wiki.img_dir }}/icon.png{% endcapture %}
{% capture icon_url %}{{ site.baseurl }}/{{ site.wiki.img_dir }}/icon.png{% endcapture %}
{% capture amp-boilerplate %}
body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}
@ -30,7 +30,7 @@ body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:non
<meta name="theme-color" content="{{ site.wiki.theme_color }}">
<link rel="shortcut icon" href="{{ icon_url }}">
<link rel="apple-touch-icon" href="{{ icon_url }}">
<link rel="canonical" href="{{ site.url }}{{ page.url }}">
<link rel="canonical" href="{{ site.baseurl }}{{ page.url }}">
{% if site.google_site_verification %}
<meta name="google-site-verification" content="{{ site.google_site_verification }}">
@ -50,15 +50,15 @@ body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:non
<body>
<div class="container">
<header class="container_header header">
<a class="header-title" href="{{ site.url }}">
<a class="header-title" href="{{ site.baseurl }}/index.html">
<amp-img class="header-icon" height="2em" width="2em"
alt="" src="{{ site.url }}/{{ site.wiki.img_dir }}/icon.svg">
alt="" src="{{ site.baseurl }}/{{ site.wiki.img_dir }}/icon.svg">
</amp-img>
{{ site.title }}
</a>
<a class="header-menu" href="#footer-menu">
<amp-img class="header-icon" height="2em" width="2em"
alt="メニュー" src="{{ site.url }}/{{ site.wiki.img_dir }}/menu.svg">
alt="メニュー" src="{{ site.baseurl }}/{{ site.wiki.img_dir }}/menu.svg">
</amp-img>
</a>
</header>
@ -73,7 +73,7 @@ body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:non
{{ page.title }}
<a title="GitHubで編集" href="{{ site.github.repository_url }}/edit/gh-pages/{{ page.path }}">
<amp-img class="edit" height="0.75em" width="0.75em" media="{{ site.media-desktop }}"
alt="編集" src="{{ site.url }}/{{ site.wiki.img_dir }}/edit.svg">
alt="編集" src="{{ site.baseurl }}/{{ site.wiki.img_dir }}/edit.svg">
</amp-img>
</a>
</h1>

8
_pages/content/decor.md Normal file
View File

@ -0,0 +1,8 @@
---
title: Modリスト - 装飾
---
- toc
{:toc}
{% include content-list.md list=site.data.mods-decor %}

View File

@ -0,0 +1,8 @@
---
title: Modリスト - 農業
---
- toc
{:toc}
{% include content-list.md list=site.data.mods-farming %}

8
_pages/content/food.md Normal file
View File

@ -0,0 +1,8 @@
---
title: Modリスト - 食べ物
---
- toc
{:toc}
{% include content-list.md list=site.data.mods-food %}

View File

@ -0,0 +1,8 @@
---
title: Modリスト - 工業
---
- toc
{:toc}
{% include content-list.md list=site.data.mods-industry %}

8
_pages/content/map.md Normal file
View File

@ -0,0 +1,8 @@
---
title: 配布マップ
---
- toc
{:toc}
{% include content-list.md list=site.data.maps %}

View File

@ -7,4 +7,4 @@ title: Modリスト - マップ生成
- toc
{:toc}
{% include list-contents.md type="mod" list=site.data.mods-mapgen %}
{% include content-list.md list=site.data.mods-mapgen %}

8
_pages/content/mob.md Normal file
View File

@ -0,0 +1,8 @@
---
title: Modリスト - Mob
---
- toc
{:toc}
{% include content-list.md list=site.data.mods-mob %}

View File

@ -6,4 +6,4 @@ date: 2019-01-03
- toc
{:toc}
{% include list-contents.md type="mod" list=site.data.mods-other %}
{% include content-list.md list=site.data.mods-other %}

View File

@ -0,0 +1,8 @@
---
title: サブゲーム
---
- toc
{:toc}
{% include content-list.md list=site.data.subgames %}

View File

@ -0,0 +1,8 @@
---
title: テクスチャパック
---
- toc
{:toc}
{% include content-list.md list=site.data.texturepacks %}

8
_pages/content/tool.md Normal file
View File

@ -0,0 +1,8 @@
---
title: Modリスト - 道具
---
- toc
{:toc}
{% include content-list.md list=site.data.mods-tool %}

View File

@ -0,0 +1,8 @@
---
title: Modリスト - 乗り物
---
- toc
{:toc}
{% include content-list.md list=site.data.mods-vehicle %}

11
_pages/game/blocks.md Normal file
View File

@ -0,0 +1,11 @@
---
title: ブロック
#date:
---
- toc
{:toc}
# <amp-img class = "edit" height = "0.75em" width = "0.75em" alt = "編集" src = "{{ site.baseurl }}/img/edit.svg" media = "{{ site.media-desktop }}"> </amp-img> TEST
TEST

View File

@ -3,6 +3,8 @@ title: コマンド
date: 2018-5-25
---
{% assign privileges-page = site.baseurl | append: "/game/privileges.html" %}
利用できるコマンドの一覧です。
MinetestおよびMinetest Gameで利用できるもののみ掲載しています。
@ -20,7 +22,7 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
`/me <メッセージ>`
自分のプレイヤー名をメッセージの文頭に挿入し、チャットに送信するコマンド。
[shout権限](privileges#shout)が必要。
[shout権限]({{ privileges-page }}#shout)が必要。
## admin
@ -40,7 +42,7 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
`/help privs`
全ての[権限](privileges)を表示する。
全ての[権限]({{ privileges-page }})を表示する。
`/help <コマンド名>`
@ -50,32 +52,32 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
`/privs`
自分が持っている[権限](privileges)を表示する。
自分が持っている[権限]({{ privileges-page }})を表示する。
`/privs <プレイヤー名>`
指定したプレイヤーの持つ[権限](privileges)を表示する。
指定したプレイヤーの持つ[権限]({{ privileges-page }})を表示する。
## msg
`/msg <プレイヤー名> <メッセージ>`
指定したプレイヤーにのみメッセージを送信する。
[shout権限](privileges#shout)が必要。
[shout権限]({{ privileges-page }}#shout)が必要。
## giveme
`/giveme <アイテム名> <個数>`
指定したアイテムを入手する。
[give権限](privileges#give)が必要。
[give権限]({{ privileges-page }}#give)が必要。
## give
`/give <プレイヤー名> <アイテム名> <個数>`
指定したプレイヤーに指定したアイテムを与える。
[give権限](privileges#give)が必要。
[give権限]({{ privileges-page }}#give)が必要。
## pulverize
@ -85,7 +87,7 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
## teleport
これらは[teleport権限](privileges#teleport)が必要。
これらは[teleport権限]({{ privileges-page }}#teleport)が必要。
`/teleport <x,y,z>`
@ -98,42 +100,42 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
`/teleport <プレイヤー名> <x,y,z>`
指定したプレイヤーを指定したXYZ座標にテレポートさせる。
[bring権限](privileges#bring)が必要。
[bring権限]({{ privileges-page }}#bring)が必要。
`/teleport <プレイヤー名1> <プレイヤー名2>`
プレイヤー1を、プレイヤー2の位置にテレポートさせる。
[bring権限](privileges#bring)が必要。
[bring権限]({{ privileges-page }}#bring)が必要。
## setpassword
`/setpassword <プレイヤー名> <パスワード>`
指定したプレイヤーのパスワードを変更する。
[password権限](privileges#password)が必要。
[password権限]({{ privileges-page }}#password)が必要。
## clearpassword
`/clearpassword <プレイヤー名>`
指定したプレイヤーのパスワードを空にする。
[password権限](privileges#password)が必要。
[password権限]({{ privileges-page }}#password)が必要。
## grant
`/grant <プレイヤー名> <権限名>`
指定したプレイヤーに[権限](privileges)を与える。
[権限](privileges)名にallと入力すると使用可能なすべての[権限](privileges)が与えられる。
[privs権限](privileges#privs)が必要。
指定したプレイヤーに[権限]({{ privileges-page }})を与える。
[権限]({{ privileges-page }})名にallと入力すると使用可能なすべての[権限]({{ privileges-page }})が与えられる。
[privs権限]({{ privileges-page }}#privs)が必要。
## revoke
`/revoke <プレイヤー名> <権限名>`
指定したプレイヤーから[権限](privileges)を剥奪する。
[権限](privileges)名にallと入力すると削除可能なすべての[権限](privileges)を剥奪する。
[privs権限](privileges#privs)が必要。
※シングルプレイヤーの[権限](privileges)からinteract、shout、basic_privs、privsを外すことはできません。
指定したプレイヤーから[権限]({{ privileges-page }})を剥奪する。
[権限]({{ privileges-page }})名にallと入力すると削除可能なすべての[権限]({{ privileges-page }})を剥奪する。
[privs権限]({{ privileges-page }}#privs)が必要。
※シングルプレイヤーの[権限]({{ privileges-page }})からinteract、shout、basic_privs、privsを外すことはできません。
## kick
@ -141,7 +143,7 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
指定したプレイヤーをBANし、切断したプレイヤー名では接続できなくなる。
切断理由は切断した相手に伝わる。
[kick権限](privileges#kick)が必要。
[kick権限]({{ privileges-page }}#kick)が必要。
## ban
@ -149,14 +151,14 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
指定したプレイヤーをBANし、切断したプレイヤーのIPでは接続できなくなる。
プレイヤー名を指定しない場合はBANしたプレイヤーの一覧が表示される。
[ban権限](privileges#ban)が必要。
[ban権限]({{ privileges-page }}#ban)が必要。
## unban
`/unban [プレイヤー名|IPアドレス]`
指定したプレイヤーのBANを解除する。
[ban権限](privileges#unban)が必要。
[ban権限]({{ privileges-page }}#unban)が必要。
## status
@ -176,13 +178,13 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
ゲーム内時間を指定した時間に変更する。
0または24000は真夜中、12000は昼になる。
[settime権限](privileges#settime)が必要。
[settime権限]({{ privileges-page }}#settime)が必要。
`/set -n time_speed <時間の早さ>`
昼と夜のサイクルの早さを変更する。
標準の早さは72に設定されている。
[server権限](privileges#server)が必要。
[server権限]({{ privileges-page }}#server)が必要。
## spawnentity
@ -190,18 +192,18 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
指定したエンティティを出現させる。
標準の早さは72に設定されている。
[give権限](privileges#give)と[interact権限](privileges#interact)が必要。
[give権限]({{ privileges-page }}#give)と[interact権限]({{ privileges-page }}#interact)が必要。
## shutdown
`/shutdown`
サーバーをシャットダウンする。
[server権限](privileges#server)が必要。
[server権限]({{ privileges-page }}#server)が必要。
## set
これらは[server権限](privileges#server)が必要。
これらは[server権限]({{ privileges-page }}#server)が必要。
`/set <変数名>`
@ -222,18 +224,18 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
マップ上の全てのオブジェクトとエンティティを削除する。
ブロックは削除されない。
時間がかかる。
[server権限](privileges#server)が必要。
[server権限]({{ privileges-page }}#server)が必要。
## auth_reload
`/auth_reload`
プレイヤーの[権限](privileges)とパスワードを再読み込みする。
[server権限](privileges#server)が必要。
プレイヤーの[権限]({{ privileges-page }})とパスワードを再読み込みする。
[server権限]({{ privileges-page }}#server)が必要。
## deleteblocks
これらは[server権限](privileges#server)が必要。
これらは[server権限]({{ privileges-page }}#server)が必要。
`/deleteblocks here [半径]`
@ -246,7 +248,7 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
## rollback
これらは[rollback権限](privileges#rollback)が必要。
これらは[rollback権限]({{ privileges-page }}#rollback)が必要。
`/rollback_check <範囲> <秒>`
@ -271,14 +273,14 @@ MinetestおよびMinetest Gameで利用できるもののみ掲載していま
[sethomeコマンド](#sethome)で設定したホーム位置にテレポートするコマンド。
設定されていない場合は動作しない。
[home権限](privileges#home)が必要。
[home権限]({{ privileges-page }}#home)が必要。
## sethome
`/sethome`
現在の位置をホームとして設定するコマンド。
[home権限](privileges#home)が必要。
[home権限]({{ privileges-page }}#home)が必要。
## kill

View File

@ -1,6 +1,6 @@
---
title: 農業
date:
#date:
---
- toc

View File

@ -1,13 +1,15 @@
---
title: 権限
date:
#date:
---
{% assign commands-page = site.baseurl | append: "/game/commands.html" %}
実装されている権限の一覧です。MinetestおよびMinetest Gameで利用できるもののみを掲載しています。
権限はプレイヤーの実行できる操作を管理する機能です。
コマンド実行などの操作で要求されます。
プレイヤーの権限を変更するには[grantコマンド](commands#grant)と[revokeコマンド](commands#revoke)を使用します。
プレイヤーの権限を変更するには[grantコマンド]({{ commands-page }}#grant)と[revokeコマンド]({{ commands-page }}#revoke)を使用します。
- toc
{:toc}
@ -37,19 +39,19 @@ basic_privs設定から含む権限を変更することが可能。
## teleport
[teleportコマンド](commands#teleport)の実行に必要な権限。
[teleportコマンド]({{ commands-page }}#teleport)の実行に必要な権限。
## bring
[teleportコマンド](commands#teleport)を他のプレイヤーへ使用する場合に必要な権限。
[teleportコマンド]({{ commands-page }}#teleport)を他のプレイヤーへ使用する場合に必要な権限。
## settime
[timeコマンド](commands#time)で時間を変更する場合に必要な権限。
[timeコマンド]({{ commands-page }}#time)で時間を変更する場合に必要な権限。
## server
[setコマンド](commands#set)や[shutdownコマンド](commands#shutdown)などのサーバ操作に必要な権限。
[setコマンド]({{ commands-page }}#set)や[shutdownコマンド]({{ commands-page }}#shutdown)などのサーバ操作に必要な権限。
## protection_bypass
@ -57,19 +59,19 @@ basic_privs設定から含む権限を変更することが可能。
## ban
[banコマンド](commands#ban)と[unbanコマンド](commands#unban)の実行に必要な権限。
[banコマンド]({{ commands-page }}#ban)と[unbanコマンド]({{ commands-page }}#unban)の実行に必要な権限。
## kick
[kickコマンド](commands#kick)の実行に必要な権限。
[kickコマンド]({{ commands-page }}#kick)の実行に必要な権限。
## give
[giveコマンド](commands#give)と[givemeコマンド](commands#giveme)の実行に必要な権限。
[giveコマンド]({{ commands-page }}#give)と[givemeコマンド]({{ commands-page }}#giveme)の実行に必要な権限。
## password
[setpasswordコマンド](commands#setpassword)と[clearpasswordコマンド](commands#clearpassword)の実行に必要な権限。
[setpasswordコマンド]({{ commands-page }}#setpassword)と[clearpasswordコマンド]({{ commands-page }}#clearpassword)の実行に必要な権限。
## fly
@ -91,4 +93,4 @@ basic_privs設定から含む権限を変更することが可能。
## home
[homeコマンド](commands#home)と[sethomeコマンド](commands#sethome)の実行に必要な権限。
[homeコマンド]({{ commands-page }}#home)と[sethomeコマンド]({{ commands-page }}#sethome)の実行に必要な権限。

View File

@ -1,6 +1,6 @@
---
title: 精錬
date:
#date:
---
- toc

View File

@ -35,4 +35,4 @@ Minetestは**Modとテクスチャパックに対応**しています。
Modにはブロックを追加するものからワールド全体を変えるものまで様々です。
このWikiのModリストや、[公式フォーラム](https://forum.minetest.net)から探してみましょう。
現在のMinetestのバージョンは**{{ site.minetest.latest_version }}**です。アップデートの内容は[アップデート情報](changelog)をご覧ください。
現在のMinetestのバージョンは**{{ site.minetest.latest_version }}**です。アップデートの内容は[アップデート情報]({{ site.baseurl }}/changelog.html)をご覧ください。

View File

@ -1,6 +1,6 @@
---
title: Mod導入方法
date:
#date:
---
# 1. Modをダウンロードする

View File

@ -1,6 +1,6 @@
---
title: Mod解説集
date:
#date:
---
Modの解説ページの一覧です。
@ -12,9 +12,9 @@ Mod名をクリックで解説ページを開きます。
# 工業
<dl>
<dt><a href="mod-manual-pipeworks">Pipeworks</a></dt>
<dt><a href="{{ site.baseurl }}/modmanual/pipeworks.html">Pipeworks</a></dt>
<dd>アイテムや水を運ぶことができるパイプを追加する。</dd>
<dt><a href="mod-manual-technic">Technic</a></dt>
<dt><a href="{{ site.baseurl }}/modmanual/technic.html">Technic</a></dt>
<dd>工業化Mod。電力(EU)を使った自動化、工業化が行える。</dd>
</dl>

View File

@ -1,6 +1,6 @@
---
title: Mod解説 - Pipeworks
date:
#date:
---
工業Mod「Pipeworks」の解説ページです。
@ -10,7 +10,7 @@ date:
# Pipeworksとは
{% include content-mod.md data=site.data.mods-industry.pipeworks %}
{% include content.md data=site.data.mods-industry.pipeworks %}
アイテムや水を輸送することを目的としたModです。また、輸送されたアイテムを使用する機械なども含まれています。
MeseconsやTechnic等を組み合わせることにより様々なことが可能となるModです。

View File

@ -1,6 +1,6 @@
---
title: Mod解説 - Technic
date:
#date:
---
工業Mod「Technic」の解説ページです。
@ -10,7 +10,7 @@ date:
# Technicとは
{% include content-mod.md data=site.data.mods-industry.technic %}
{% include content.md data=site.data.mods-industry.technic %}
「Technic」はMinetestの工業化Modです。
『電力(EU)』という新しい仕組みを使って、いろいろな作業を自動化したり、新しい道具や機械を開発したりできます。

View File

@ -1,6 +1,6 @@
---
title: よくある質問とトラブルシューティング
date:
#date:
---
- toc
@ -8,7 +8,7 @@ date:
# Modの入れ方がわからない
[Modの導入方法](mod-installing)のページをご覧ください。
[Modの導入方法]({{ site.baseurl }}/mod-installing.html)のページをご覧ください。
# Modを入れるとエラーが発生する
@ -24,7 +24,7 @@ date:
Minetest Gameには実装されていませんが、Modで追加することができます。
<br>
[Mobを追加するModの一覧](https://minetest-jp.github.io/wiki/mods-mob)をご覧ください。
[Mobを追加するModの一覧]({{ site.baseurl }}/content/mob.html)をご覧ください。
# 空の飛び方が分からない

View File

@ -6,4 +6,4 @@ date: 2018-8-16
- toc
{:toc}
{% include list-contents.md type="tool" list=site.data.tools-map %}
{% include content-list.md list=site.data.tools-map %}

View File

@ -0,0 +1,9 @@
---
title: ツール - Mod開発補助
date: 2018-8-18
---
- toc
{:toc}
{% include content-list.md list=site.data.tools-mod-development %}

View File

@ -0,0 +1,9 @@
---
title: ツール - Mod導入補助
date: 2018-8-16
---
- toc
{:toc}
{% include content-list.md list=site.data.tools-mod-installer %}

View File

@ -1,10 +1,8 @@
---
title: 動画紹介
date:
#date:
---
- toc
{:toc}

View File

Before

Width:  |  Height:  |  Size: 840 B

After

Width:  |  Height:  |  Size: 840 B

View File

Before

Width:  |  Height:  |  Size: 414 B

After

Width:  |  Height:  |  Size: 414 B

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 497 B

After

Width:  |  Height:  |  Size: 497 B

View File

Before

Width:  |  Height:  |  Size: 199 B

After

Width:  |  Height:  |  Size: 199 B

View File

Before

Width:  |  Height:  |  Size: 167 KiB

After

Width:  |  Height:  |  Size: 167 KiB

View File

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB

View File

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 98 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 462 KiB

After

Width:  |  Height:  |  Size: 462 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

Before

Width:  |  Height:  |  Size: 501 KiB

After

Width:  |  Height:  |  Size: 501 KiB

View File

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 72 KiB

View File

Before

Width:  |  Height:  |  Size: 85 KiB

After

Width:  |  Height:  |  Size: 85 KiB

View File

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 107 KiB

View File

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 103 KiB

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 149 KiB

After

Width:  |  Height:  |  Size: 149 KiB

View File

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 113 KiB

View File

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 88 KiB

View File

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 103 KiB

View File

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

Before

Width:  |  Height:  |  Size: 326 KiB

After

Width:  |  Height:  |  Size: 326 KiB

View File

Before

Width:  |  Height:  |  Size: 216 KiB

After

Width:  |  Height:  |  Size: 216 KiB

View File

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 138 KiB

View File

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 112 KiB

View File

Before

Width:  |  Height:  |  Size: 118 KiB

After

Width:  |  Height:  |  Size: 118 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 478 KiB

After

Width:  |  Height:  |  Size: 478 KiB

View File

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 98 KiB

View File

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 70 KiB

View File

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 89 KiB

View File

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

View File

Before

Width:  |  Height:  |  Size: 192 KiB

After

Width:  |  Height:  |  Size: 192 KiB

View File

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 146 KiB

View File

Before

Width:  |  Height:  |  Size: 241 KiB

After

Width:  |  Height:  |  Size: 241 KiB

View File

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

View File

Before

Width:  |  Height:  |  Size: 209 KiB

After

Width:  |  Height:  |  Size: 209 KiB

View File

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 153 KiB

View File

Before

Width:  |  Height:  |  Size: 252 KiB

After

Width:  |  Height:  |  Size: 252 KiB

View File

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Some files were not shown because too many files have changed in this diff Show More