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 |  | Strength | Can catch ? | Can catch ? | Can catch ? | Can catch ? | Can catch ? | Item ID | Skill Level
|
31 |
+
---|---|---|---|---|---|---|---|---|---|---
|
32 |
+

|
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 |
+

|
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 |
+

|
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 |
+

|
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 |
+

|
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 |
+

|
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 |
+
```
|