Skip to content

Commit

Permalink
Add Writerside
Browse files Browse the repository at this point in the history
  • Loading branch information
a-blob committed Oct 31, 2023
1 parent 13ce0b5 commit fcd399e
Show file tree
Hide file tree
Showing 14 changed files with 477 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/ctf-handbooks.github.io.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Writerside/c.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE categories
SYSTEM "https://resources.jetbrains.com/writerside/1.0/categories.dtd">
<categories>
<category id="wrs" name="Writerside documentation" order="1"/>
</categories>
12 changes: 12 additions & 0 deletions Writerside/cfg/buildprofiles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<buildprofiles xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/build-profiles.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<variables></variables>
<build-profile instance="in">
<variables>
<noindex-content>true</noindex-content>
</variables>
</build-profile>

</buildprofiles>
Binary file added Writerside/images/header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions Writerside/in.tree
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE instance-profile
SYSTEM "https://resources.jetbrains.com/writerside/1.0/product-profile.dtd">

<instance-profile id="in"
name="The Map Maker's Handbook" start-page="HANDBOOK.md">

<toc-element topic="README.md"/>
<toc-element topic="HANDBOOK.md"/>
<toc-element topic="ITEMSTRING.md"/>
</instance-profile>
372 changes: 372 additions & 0 deletions Writerside/topics/HANDBOOK.md

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions Writerside/topics/ITEMSTRING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# CTF Commonly Used Itemstring List
***
Commonly used indestructible barriers/nodes:

| Node Name | Itemstring |
|:----------|:-----------|
| Indestructible Barrier Glass | `ctf_map:ind_glass` |
| Indestructible Red Barrier Glass | `ctf_map:ind_glass_red` |
| Indestructible Red Barrier Stone | `ctf_map:ind_stone_red` |
| Indestructible Lava Barrier Stone | `ctf_map:ind_lava` |
| Indestructible Water Barrier Glass | `ctf_map:ind_water` |
| Indestructible Stone | `ctf_map:stone` |

You can find a list of the nodes from the Minetest game [here](https://wiki.minetest.net/Games/Minetest_Game/Nodes). Click into each node to view its itemstring.

To see the itemstring of a node when hovering over it inside your inventory, you can go to settings, search for "append", and enable Append item name.

![image](https://github.com/CTF-handbooks/map-maker-handbook/assets/88883098/3100415b-4cbf-4308-bffe-44b02c3b2cb2)
13 changes: 13 additions & 0 deletions Writerside/topics/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# About
<p align="center">
<img src="header.png"/>
</p>

<h1 align="center">The Map Maker's Handbook</h1>

This is a detailed guide on the process of making a map for the Minetest Capture the Flag game. This is still a work in progress.

* [`HANDBOOK.md`](https://github.com/CTF-handbooks/map-maker-handbook/blob/main/HANDBOOK.md#the-map-makers-handbook): The guide on how to setup your game and world for map making. Start reading here!
* [`ITEMSTRING.md`](https://github.com/CTF-handbooks/map-maker-handbook/blob/main/ITEMSTRING.md#a-list-of-the-itemstring-for-the-indestructible-nodes-ctf-provides): A list of itemstring of the indestructible nodes CTF provides.
## Licenses
- [`CTF Header`](https://github.com/CTF-Handbooks/map-maker-handbook/blob/main/images/header.png): CC-BY-3.0 by [SuddenSFD](https://github.com/SuddenSFD)
5 changes: 5 additions & 0 deletions Writerside/v.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE vars SYSTEM "https://resources.jetbrains.com/writerside/1.0/vars.dtd">
<vars>
<var name="product" value="Writerside"/>
</vars>
8 changes: 8 additions & 0 deletions Writerside/writerside.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ihp SYSTEM "https://resources.jetbrains.com/writerside/1.0/ihp.dtd">

<ihp version="2.0">
<topics dir="topics" web-path="topics"/>
<images dir="images" web-path="images"/>
<instance src="in.tree"/>
</ihp>

0 comments on commit fcd399e

Please sign in to comment.