cleaned up issue03, Crown of Neptune edited

This commit is contained in:
Laurens Kils-Hütten
2024-04-06 18:41:22 +02:00
parent 112cc963bc
commit c53902f1ff
27 changed files with 9911 additions and 989 deletions

5
issue03/img/Makefile Normal file
View File

@@ -0,0 +1,5 @@
%.pdf: %.svg
convert $< $@
%.pdf: %.dot
dot -Tpdf $< > $@

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

4386
issue03/img/caves.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 114 KiB

4381
issue03/img/dungeon.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 104 KiB

BIN
issue03/img/encounters1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 KiB

BIN
issue03/img/encounters2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
issue03/img/map.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 KiB

BIN
issue03/img/npc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,31 @@
digraph pointcrawl {
a [label="Vier dunkle Zellen"];
b [label="Die ungewisse\n Kreuzung"];
c [label="Die Schatz-\nkammer"];
d [label="Piraten!"];
e [label="Das Piratenlager"];
f [label="Das Schiff"];
g [label="Eine Höhle,\n ein Schwarm"];
h [label="Das Grab des\n alten Piraten"];
i [label="Die geheime\nBucht"];
j [label="Ziegen!"];
k [label="Die dunkle\n See"];
l [label="Der Kraken"];
a -> b;
b -> {c d};
c -> b;
d -> e;
e -> f;
a -> g;
g -> h;
h -> i;
i -> j;
j -> e;
i -> k;
k -> f;
f -> l;
k -> l;
a -> f;
}

BIN
issue03/img/title.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
issue03/img/treasure.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB