-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfa.tex
129 lines (107 loc) · 3.31 KB
/
fa.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
\documentclass{report}
\input{common.tex}
\usepackage{fullpage}
\newcommand{\playerequipment}[2]{
\myfilledtextfield{4.5cm}{#1} & \myfillednumberfield{1.2cm}{#2} & \mycheckbox & \\
\hline
}
\newcommand{\blankplayerequipment}{
\mytextfield{4.5cm} & \mynumberfield{1.2cm} & \mycheckbox & \mytextfield{6.5cm}\\
\hline
}
\newcommand{\blankplayerinfo}{
\mytextfield{4.5cm} & \mytextfield{6.5cm}\\
\hline
}
\newcommand{\quest}[5]{
\myfilledtextfield{5cm}{#1} & \myfilledtextfield{2cm}{#2} & \myfilledtextfield{1.75cm}{#3} & \myfillednumberfield{1.2cm}{#4} & {\centering #5} & \mycheckbox \\
\hline
}
\newcommand{\blankquest}{
\mytextfield{5cm} & \mytextfield{2cm} & \mytextfield{1.75cm} & \mynumberfield{1.2cm} & \mytextfield{1.2cm} & \mycheckbox \\
\hline
}
\begin{document}
\chapter{Quêtes}
\begin{Form}
\begin{tabular}{ | m{5cm} | m{2cm} | m{1.75cm} | m{1.2cm} | M{1.25cm} | m{2cm} |}
\hline
Nom & Type & Difficulté & Section & Spécial \footnote{Les symboles de la colonne « Spécial » ne sont utilisés que par certains héros spécifiques, ignorez-les pour les autres.} & Accomplie ?\\
\hline
\quest{Ceux qui vivent}{Diplomatie}{Facile}{108}{\cross}
\quest{L'ordre des tueurs de monstres}{Dipl./Roubl.}{Facile}{67}{\cross,\ankh}
\quest{Le château du comte}{Recherche}{Facile}{23}{\ankh}
\quest{Baba Yaga}{Diplomatie}{Moyenne}{103}{}
\quest{La traque}{Combat}{Moyenne}{3}{\caduceus}
\blankquest
\blankquest
\blankquest
\blankquest
\blankquest
\blankquest
\end{tabular}
\end{Form}
\chapter{Protagoniste}
\section{Équipement}
\begin{Form}
\begin{tabular}{ | m{4.5cm} | m{1.2cm} | m{1.2cm} | m{6.5cm} | }
\hline
Objet & Valeur & Utilisé ? & Notes\\
\hline
\playerequipment{Dague en argent}{5}
\playerequipment{Flûte traversière}{1}
\playerequipment{Pendentif sacré}{2}
\playerequipment{Anneau de Lumière}{10}
\playerequipment{Fétiche en os}{5}
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\blankplayerequipment
\end{tabular}
\end{Form}
\clearpage
\section{Informations}
\begin{Form}
\begin{tabular}{ | m{5.5cm} | m{7.5cm} | }
\hline
Nom & Notes\\
\hline
\blankplayerinfo
\blankplayerinfo
\blankplayerinfo
\blankplayerinfo
\blankplayerinfo
\end{tabular}
\end{Form}
\section{Codes}
\begin{Form}
\begin{tabular}{ | m{3cm} | m{3cm} | m{3cm} | m{3cm} | }
\hline
\mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm}\\
\hline
\mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm}\\
\hline
\mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm}\\
\hline
\mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm} & \mytextfield{3cm}\\
\hline
\end{tabular}
\end{Form}
\section{Or \& Réputation}
\begin{Form}
\begin{tabular}{ | m{3cm} | m{3cm} | }
\hline
Or & Réputation\\
\hline
\TextField[bordercolor=,backgroundcolor=,width=3cm,value=20]{} & \TextField[bordercolor=,backgroundcolor=,width=3cm,value=0]{}\\
\hline
\end{tabular}
\end{Form}
\end{document}