summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/CMakeLists.txt1
-rw-r--r--data/fonts/CMakeLists.txt2
-rw-r--r--data/fonts/Makefile.am7
-rw-r--r--data/fonts/dejavusans-bold.ttfbin0 -> 569880 bytes
-rw-r--r--data/fonts/dejavusans.ttfbin569716 -> 619108 bytes
-rw-r--r--data/graphics/gui/CMakeLists.txt10
-rw-r--r--data/graphics/gui/Makefile.am11
-rw-r--r--data/graphics/gui/default.pngbin0 -> 1395 bytes
-rw-r--r--data/graphics/gui/emotions.pngbin19386 -> 0 bytes
-rw-r--r--data/graphics/gui/fixedfont.pngbin1895 -> 0 bytes
-rw-r--r--data/graphics/gui/gui.xml18
-rw-r--r--data/graphics/gui/hits_blue.pngbin589 -> 884 bytes
-rw-r--r--data/graphics/gui/hits_red.pngbin561 -> 813 bytes
-rw-r--r--data/graphics/gui/hits_yellow.pngbin894 -> 907 bytes
-rw-r--r--data/graphics/gui/menuitemD.pngbin1329 -> 0 bytes
-rw-r--r--data/graphics/gui/menuitemF.pngbin1530 -> 0 bytes
-rw-r--r--data/graphics/gui/menuitemN.pngbin1310 -> 0 bytes
-rw-r--r--data/graphics/gui/menuitemP.pngbin1436 -> 0 bytes
-rw-r--r--data/graphics/gui/rpgfont_wider.pngbin4382 -> 0 bytes
-rw-r--r--data/graphics/gui/speechbubble.xml18
-rw-r--r--data/graphics/gui/thickborder.pngbin530 -> 0 bytes
-rw-r--r--data/help/commands.txt6
-rw-r--r--data/help/skills.txt2
23 files changed, 54 insertions, 21 deletions
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
index d5e9e88e..35b9d4e2 100644
--- a/data/CMakeLists.txt
+++ b/data/CMakeLists.txt
@@ -1,5 +1,6 @@
SET(DATA_DIR ${PKG_DATADIR}/data)
+ADD_SUBDIRECTORY(fonts)
ADD_SUBDIRECTORY(graphics)
ADD_SUBDIRECTORY(help)
ADD_SUBDIRECTORY(icons)
diff --git a/data/fonts/CMakeLists.txt b/data/fonts/CMakeLists.txt
index dc22e031..d5b6ed85 100644
--- a/data/fonts/CMakeLists.txt
+++ b/data/fonts/CMakeLists.txt
@@ -1,6 +1,6 @@
SET (FILES
dejavusans.ttf
+ dejavusans-bold.ttf
)
INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/fonts)
-
diff --git a/data/fonts/Makefile.am b/data/fonts/Makefile.am
index 331f6c8b..5aa02999 100644
--- a/data/fonts/Makefile.am
+++ b/data/fonts/Makefile.am
@@ -1,5 +1,8 @@
fontsdir = $(pkgdatadir)/data/fonts
-fonts_DATA = dejavusans.ttf
+fonts_DATA = \
+ dejavusans.ttf \
+ dejavusans-bold.ttf
-EXTRA_DIST = $(fonts_DATA)
+EXTRA_DIST = \
+ $(fonts_DATA)
diff --git a/data/fonts/dejavusans-bold.ttf b/data/fonts/dejavusans-bold.ttf
new file mode 100644
index 00000000..ebefb0ca
--- /dev/null
+++ b/data/fonts/dejavusans-bold.ttf
Binary files differ
diff --git a/data/fonts/dejavusans.ttf b/data/fonts/dejavusans.ttf
index 627cef46..6253857c 100644
--- a/data/fonts/dejavusans.ttf
+++ b/data/fonts/dejavusans.ttf
Binary files differ
diff --git a/data/graphics/gui/CMakeLists.txt b/data/graphics/gui/CMakeLists.txt
index 3d617696..f564253a 100644
--- a/data/graphics/gui/CMakeLists.txt
+++ b/data/graphics/gui/CMakeLists.txt
@@ -8,7 +8,8 @@ SET (FILES
checkbox.png
close_button.png
deepbox.png
- fixedfont.png
+ default.png
+ gui.xml
hits_blue.png
hits_red.png
hits_yellow.png
@@ -20,16 +21,12 @@ SET (FILES
hscroll_right_pressed.png
item_shortcut_bgr.png
mouse.png
- menuitemD.png
- menuitemF.png
- menuitemN.png
- menuitemP.png
radioin.png
radioout.png
resize.png
- rpgfont_wider.png
selection.png
slider.png
+ speechbubble.xml
tab.png
tabselected.png
target-cursor-blue-l.png
@@ -38,7 +35,6 @@ SET (FILES
target-cursor-red-l.png
target-cursor-red-m.png
target-cursor-red-s.png
- thickborder.png
unknown-item.png
vscroll_blue.png
vscroll_down_default.png
diff --git a/data/graphics/gui/Makefile.am b/data/graphics/gui/Makefile.am
index 33abf521..e78018b7 100644
--- a/data/graphics/gui/Makefile.am
+++ b/data/graphics/gui/Makefile.am
@@ -11,8 +11,8 @@ gui_DATA = \
checkbox.png \
close_button.png \
deepbox.png \
- emotions.png \
- fixedfont.png \
+ default.png \
+ gui.xml \
hits_blue.png \
hits_red.png \
hits_yellow.png \
@@ -24,16 +24,12 @@ gui_DATA = \
hscroll_right_pressed.png \
item_shortcut_bgr.png \
mouse.png \
- menuitemD.png \
- menuitemF.png \
- menuitemN.png \
- menuitemP.png \
radioin.png \
radioout.png \
resize.png \
- rpgfont_wider.png \
selection.png \
slider.png \
+ speechbubble.xml \
tab.png \
tabselected.png \
target-cursor-blue-l.png \
@@ -42,7 +38,6 @@ gui_DATA = \
target-cursor-red-l.png \
target-cursor-red-m.png \
target-cursor-red-s.png \
- thickborder.png \
unknown-item.png \
vscroll_blue.png \
vscroll_down_default.png \
diff --git a/data/graphics/gui/default.png b/data/graphics/gui/default.png
new file mode 100644
index 00000000..4c312487
--- /dev/null
+++ b/data/graphics/gui/default.png
Binary files differ
diff --git a/data/graphics/gui/emotions.png b/data/graphics/gui/emotions.png
deleted file mode 100644
index 146f2d24..00000000
--- a/data/graphics/gui/emotions.png
+++ /dev/null
Binary files differ
diff --git a/data/graphics/gui/fixedfont.png b/data/graphics/gui/fixedfont.png
deleted file mode 100644
index 10319291..00000000
--- a/data/graphics/gui/fixedfont.png
+++ /dev/null
Binary files differ
diff --git a/data/graphics/gui/gui.xml b/data/graphics/gui/gui.xml
new file mode 100644
index 00000000..fe62528e
--- /dev/null
+++ b/data/graphics/gui/gui.xml
@@ -0,0 +1,18 @@
+<skinset name="Default" image="default.png">
+ <widget type="Window">
+ <!-- Top Row -->
+ <part type="top-left-corner" xpos="0" ypos="0" width="4" height="4" />
+ <part type="top-edge" xpos="4" ypos="0" width="3" height="4" />
+ <part type="top-right-corner" xpos="7" ypos="0" width="4" height="4" />
+
+ <!-- Middle Row -->
+ <part type="left-edge" xpos="0" ypos="4" width="4" height="10" />
+ <part type="bg-quad" xpos="11" ypos="0" width="32" height="32" />
+ <part type="right-edge" xpos="7" ypos="4" width="4" height="10" />
+
+ <!-- Bottom Row -->
+ <part type="bottom-left-corner" xpos="0" ypos="15" width="4" height="4" />
+ <part type="bottom-edge" xpos="4" ypos="15" width="3" height="4" />
+ <part type="bottom-right-corner" xpos="7" ypos="15" width="4" height="4" />
+ </widget>
+</skinset> \ No newline at end of file
diff --git a/data/graphics/gui/hits_blue.png b/data/graphics/gui/hits_blue.png
index 59458485..cfb04ab8 100644
--- a/data/graphics/gui/hits_blue.png
+++ b/data/graphics/gui/hits_blue.png
Binary files differ
diff --git a/data/graphics/gui/hits_red.png b/data/graphics/gui/hits_red.png
index da765dc4..150f1c1e 100644
--- a/data/graphics/gui/hits_red.png
+++ b/data/graphics/gui/hits_red.png
Binary files differ
diff --git a/data/graphics/gui/hits_yellow.png b/data/graphics/gui/hits_yellow.png
index d77b7c05..6975dfd5 100644
--- a/data/graphics/gui/hits_yellow.png
+++ b/data/graphics/gui/hits_yellow.png
Binary files differ
diff --git a/data/graphics/gui/menuitemD.png b/data/graphics/gui/menuitemD.png
deleted file mode 100644
index a9fe2222..00000000
--- a/data/graphics/gui/menuitemD.png
+++ /dev/null
Binary files differ
diff --git a/data/graphics/gui/menuitemF.png b/data/graphics/gui/menuitemF.png
deleted file mode 100644
index 84142a16..00000000
--- a/data/graphics/gui/menuitemF.png
+++ /dev/null
Binary files differ
diff --git a/data/graphics/gui/menuitemN.png b/data/graphics/gui/menuitemN.png
deleted file mode 100644
index bf25dd61..00000000
--- a/data/graphics/gui/menuitemN.png
+++ /dev/null
Binary files differ
diff --git a/data/graphics/gui/menuitemP.png b/data/graphics/gui/menuitemP.png
deleted file mode 100644
index 060d5a34..00000000
--- a/data/graphics/gui/menuitemP.png
+++ /dev/null
Binary files differ
diff --git a/data/graphics/gui/rpgfont_wider.png b/data/graphics/gui/rpgfont_wider.png
deleted file mode 100644
index 55ccbbd6..00000000
--- a/data/graphics/gui/rpgfont_wider.png
+++ /dev/null
Binary files differ
diff --git a/data/graphics/gui/speechbubble.xml b/data/graphics/gui/speechbubble.xml
new file mode 100644
index 00000000..8715027d
--- /dev/null
+++ b/data/graphics/gui/speechbubble.xml
@@ -0,0 +1,18 @@
+<skinset name="SpeechBubble" image="bubble.png">
+ <widget type="Window">
+ <!-- Top Row -->
+ <part type="top-left-corner" xpos="0" ypos="0" width="5" height="5" />
+ <part type="top-edge" xpos="5" ypos="0" width="5" height="5" />
+ <part type="top-right-corner" xpos="10" ypos="0" width="5" height="5" />
+
+ <!-- Middle Row -->
+ <part type="left-edge" xpos="0" ypos="5" width="5" height="5" />
+ <part type="bg-quad" xpos="5" ypos="5" width="5" height="5" />
+ <part type="right-edge" xpos="10" ypos="5" width="5" height="5" />
+
+ <!-- Bottom Row -->
+ <part type="bottom-left-corner" xpos="0" ypos="10" width="5" height="5" />
+ <part type="bottom-edge" xpos="5" ypos="10" width="5" height="5" />
+ <part type="bottom-right-corner" xpos="10" ypos="10" width="5" height="5" />
+ </widget>
+</skinset> \ No newline at end of file
diff --git a/data/graphics/gui/thickborder.png b/data/graphics/gui/thickborder.png
deleted file mode 100644
index da72c92f..00000000
--- a/data/graphics/gui/thickborder.png
+++ /dev/null
Binary files differ
diff --git a/data/help/commands.txt b/data/help/commands.txt
index 2c6e8299..c4795050 100644
--- a/data/help/commands.txt
+++ b/data/help/commands.txt
@@ -29,9 +29,7 @@
##2H##P hide all non-sticky windows
##2Z##P pick up item
##2Enter##P focus chat window / send message
- ##2Shift##P hold it when attacking to lock target for auto
- attack
-
+
##2MOUSE:
@@ -55,6 +53,8 @@
/whisper "<name>" <message>
+ For further help type /help in the chat console.
+
##2IGNORING COMMUNICATION
diff --git a/data/help/skills.txt b/data/help/skills.txt
index 84d5bc5a..3a075ee0 100644
--- a/data/help/skills.txt
+++ b/data/help/skills.txt
@@ -11,5 +11,7 @@
##2Level 1:##P enables the ability to trade with others
##2Level 2:##P enables the ability to express emotions
##2Level 3:##P enables character to sit
+ ##2Level 5:##P enables a char to join a party.
+ ##2Level 7:##P enables a char to create a party
Other levels are still not implemented.
\ No newline at end of file