mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-16 08:40:57 +01:00
New graphics for red damage animation. Added better script triggers to Mikhail's conversation while doing the bread and rats quests. Start outline of new minor quest for v0.6.11 (sisterfight). Re-spawn monsters that were not unique in v0.6.10 (issue 301). git-svn-id: https://andors-trail.googlecode.com/svn/trunk@225 08aca716-68be-ccc6-4d58-36f5abd142ac
71 lines
2.0 KiB
XML
71 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="@dimen/dialog_margin"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/levelup_title"
|
|
android:text="@string/levelup_title"
|
|
style="@style/titleWithIcon"
|
|
android:drawableLeft="@drawable/char_hero"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/levelup_description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/levelup_description"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/levelup_add_health"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/levelup_add_health"
|
|
/>
|
|
<Button
|
|
android:id="@+id/levelup_add_attackchance"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/levelup_add_attackchance"
|
|
/>
|
|
<Button
|
|
android:id="@+id/levelup_add_attackdamage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/levelup_add_attackdamage"
|
|
/>
|
|
<Button
|
|
android:id="@+id/levelup_add_blockchance"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/levelup_add_blockchance"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/levelup_adds_new_skillpoint"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/levelup_adds_new_skillpoint"
|
|
style="@style/textWithIcon"
|
|
android:drawableLeft="@drawable/ui_icon_skill"
|
|
/>
|
|
|
|
<!-- Workaround http://code.google.com/p/andors-trail/issues/detail?id=242 -->
|
|
<ListView android:layout_width="match_parent" android:layout_height="1dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|