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
89 lines
2.8 KiB
XML
89 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/combatview_actionbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<Button android:id="@+id/combatview_moveattack"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/smalltext_buttonheight"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:text="@string/combat_attack"
|
|
/>
|
|
|
|
<TextView android:id="@+id/combatview_status"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:layout_weight="1"
|
|
android:shadowDx="1"
|
|
android:shadowDy="1"
|
|
android:shadowRadius="1"
|
|
android:shadowColor="#000"
|
|
android:paddingBottom="4sp"
|
|
android:text="@string/status_ap"
|
|
/>
|
|
|
|
<Button android:id="@+id/combatview_endturn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/smalltext_buttonheight"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:text="@string/combat_endturn"
|
|
/>
|
|
|
|
<Button android:id="@+id/combatview_flee"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/smalltext_buttonheight"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:text="@string/combat_flee"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView android:id="@+id/combatview_monsterismoving"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/actionbar_text"
|
|
android:layout_alignBottom="@id/combatview_actionbar"
|
|
android:shadowDx="1"
|
|
android:shadowDy="1"
|
|
android:shadowRadius="1"
|
|
android:shadowColor="#000"
|
|
android:paddingBottom="4sp"
|
|
android:text="@string/combat_monsteraction"
|
|
android:gravity="center"
|
|
/>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/combatview_monsterbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layout_below="@id/combatview_actionbar"
|
|
>
|
|
|
|
<ImageButton android:id="@+id/combatview_monsterinfo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/smalltext_buttonheight"
|
|
android:layout_marginRight="5sp"
|
|
android:contentDescription="@string/dialog_monsterencounter_info"
|
|
/>
|
|
|
|
<com.gpl.rpg.AndorsTrail.view.RangeBar
|
|
android:id="@+id/combatview_monsterhealth"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</merge> |