aboutsummaryrefslogtreecommitdiff
path: root/blocking
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2019-07-01 13:10:32 +0200
committerDaniel Schadt <kingdread@gmx.de>2019-07-01 13:10:32 +0200
commit5d75b6acd325896d774b460addaa47f5fd30662f (patch)
tree3f29543bc471a8770bbbd930390d8971d8aba165 /blocking
parent7e4948dbc02909346df0e0ddeefd665639bb5dc4 (diff)
downloadopen-tt-guides-5d75b6acd325896d774b460addaa47f5fd30662f.tar.gz
open-tt-guides-5d75b6acd325896d774b460addaa47f5fd30662f.tar.bz2
open-tt-guides-5d75b6acd325896d774b460addaa47f5fd30662f.zip
add trivia boxes
Diffstat (limited to 'blocking')
-rw-r--r--blocking/blocking.tex28
-rw-r--r--blocking/custom.css5
2 files changed, 33 insertions, 0 deletions
diff --git a/blocking/blocking.tex b/blocking/blocking.tex
index 5ba22f5..db9da45 100644
--- a/blocking/blocking.tex
+++ b/blocking/blocking.tex
@@ -35,6 +35,12 @@
}{
\HCode{</p></div><p>}
}
+\newenvironment{triviabox}{
+ \HCode{</p><div class="triviabox"><p class="indent">}
+ \textbf{Trivia}:
+}{
+ \HCode{</p></div><p>}
+}
\else
\newtcolorbox{infobox}[1][]{
breakable,
@@ -52,6 +58,22 @@
outer arc=0pt,
colframe=black,
}
+\newtcolorbox{triviabox}{
+ breakable,
+ title=Trivia,
+ colback=white,
+ colbacktitle=white,
+ coltitle=black,
+ fonttitle=\bfseries,
+ bottomrule=0pt,
+ toprule=0pt,
+ leftrule=3pt,
+ rightrule=3pt,
+ titlerule=0pt,
+ arc=0pt,
+ outer arc=0pt,
+ colframe=blue,
+}
\fi
@@ -581,6 +603,12 @@ If you are unsure, you can always use \skill{Shield}{5}{Shield of Absorption} fi
If you want to be extra sure, you can take \href{https://wiki.guildwars2.com/wiki/Shield_of_the_Avenger}{\uskill{Shield of the Avenger}} as an extra utility.
This will give you another ability that you can use to block eggs.
+\begin{triviabox}
+ \uskill{Shield of the Avenger} used to have a bug which made it block unblockable projectiles.
+ This meant that you could use it for husk and AoE blocking.
+ This bug has been fixed in the July 24, 2018 patch.
+\end{triviabox}
+
\subsubsection{Advanced Mode}
diff --git a/blocking/custom.css b/blocking/custom.css
index af5dede..db5d227 100644
--- a/blocking/custom.css
+++ b/blocking/custom.css
@@ -108,3 +108,8 @@ div.infobox {
border-left: 5px solid green;
border-right: 5px solid green;
}
+
+div.triviabox {
+ border-left: 5px solid blue;
+ border-right: 5px solid blue;
+}