Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Decription
|
2 |
+
|
3 |
+
Datasets of articles extracted from https://pzwiki.net/wiki/Project_Zomboid_Wiki
|
4 |
+
|
5 |
+
## Format
|
6 |
+
|
7 |
+
JSONL
|
8 |
+
|
9 |
+
## Fields
|
10 |
+
|
11 |
+
- url (e.g., `https://pzwiki.net/wiki/Mechanics`)
|
12 |
+
- title (e.g., `Mechanics`)
|
13 |
+
- wiki_notes (e.g., `This page has been revised for the current stable version (41.78.16).`)
|
14 |
+
- content
|
15 |
+
- navigation (e.g., `Project Zomboid > Game mechanics > Character > Skills > Mechanics`)
|
16 |
+
- footer
|
17 |
+
|
18 |
+
## Limitation
|
19 |
+
|
20 |
+
### Images
|
21 |
+
|
22 |
+
It's pure text so images are simply referred to by their path
|
23 |
+
|
24 |
+
### Tables
|
25 |
+
|
26 |
+
Tables are converted to markdown strings.
|
27 |
+
For instance, [Trapping table](https://pzwiki.net/wiki/Trapping)
|
28 |
+
|
29 |
+
```
|
30 |
+
Item | Description | ![Weight](/w/images/9/9f/Moodle_Icon_HeavyLoad.png) | Strength | Can catch ![Mouse](/w/images/5/5c/Mouse.png)? | Can catch ![Rat](/w/images/8/8b/Rat.png)? | Can catch ![Squirrel](/w/images/4/41/Squirrel.png)? | Can catch ![Rabbit](/w/images/f/fd/Rabbit.png)? | Can catch ![Small Bird](/w/images/7/70/Bird.png)? | Item ID | Skill Level
|
31 |
+
---|---|---|---|---|---|---|---|---|---|---
|
32 |
+
![Mouse Trap](/w/images/7/75/Mousetrap.png)
|
33 |
+
Mouse Trap | Small trap used by beginner trappers. Used to catch mice and rats. | 0.3 | 50 | Yes (30%) | Yes (25%) | No | No | No | Base.TrapMouse | Uncraftable
|
34 |
+
![Trap Stick](/w/images/e/ea/TrapStick.png)
|
35 |
+
Stick Trap | Small trap used by beginner trappers. Used to catch small birds. | 0.5 | 15 | No | No | No | No | Yes (40%) | Base.TrapStick | Trapping 0
|
36 |
+
![Snare Trap](/w/images/4/4a/TrapSnare.png)
|
37 |
+
Snare Trap | Medium size trap used by novice trappers. Used to catch squirrels and rabbits. | 0.5 | 10 | No | No | Yes (30%) | Yes (30%) | No | Base.TrapSnare | Trapping 1
|
38 |
+
![Trap Box](/w/images/6/62/TrapBox.png)
|
39 |
+
Trap Box | Medium size trap used by apprentice trappers. Used to catch squirrels and rabbits. | 1 | 15 | No | No | Yes (25%) | Yes (30%) | No | Base.TrapBox | Trapping 2, Carpentry 1
|
40 |
+
![Trap Crate](/w/images/6/64/TrapCrate.png)
|
41 |
+
Trap Crate | Medium size trap used by beginner trappers. Used to catch squirrels and rabbits. | 1 | 15 | No | No | Yes (30%) | Yes (30%) | No | Base.TrapCrate | Trapping 0
|
42 |
+
![Cage Trap](/w/images/7/73/TrapCage.png)
|
43 |
+
Cage Trap | Medium size trap used by journeyman trappers. Used to catch squirrels and rabbits. | 1 | 20 | No | No | Yes (40%) | Yes (40%) | No | Base.TrapCage | Trapping 3
|
44 |
+
```
|