forked from rpgtex/DND-5e-LaTeX-Template
-
Notifications
You must be signed in to change notification settings - Fork 37
/
cards.tex
39 lines (34 loc) · 938 Bytes
/
cards.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
\documentclass[a4paper,landscape]{article}
\usepackage{lib/rpg-card}
\begin{document}
\begin{center}
\pagestyle{empty}
\begin{tikzpicture}
\cardbackground{img/cat.jpg}
\cardtypeMonster{Object type}
\cardtitle{Mad cat}
\cardcontent{I will destroy you!}{Let me catch you ...}
\cardprice{2} % this line is optional
\cardborder
\end{tikzpicture}
\hspace{5mm}
\begin{tikzpicture}
\cardbackground{img/olw.jpg}
\cardtypeObject{object type}
\cardtitle{Slipper Chapel}
\cardcontent{}{}
\cardprice{42}
\cardborder
\end{tikzpicture}
\hspace{5mm}
\begin{tikzpicture}
\cardbackground{img/axe.png}
\cardtypeEquipement{img/gloves.png}{Hand}
\cardtitle{Axe}
\cardcontent{}{}
\cardprice{12}
\cardborder
\end{tikzpicture}
\hspace{5mm}
\end{center}
\end{document}