Files
andors-trail/AndorsTrail/res/layout/abilitymodifierview.xml
Gonk 8daf7ca144 first and untested draft of the damage rebalancing
uses a damage modifier for each weapon
the modifier is only applied to non-weapon damage
added default modifiers to existing weapons based on their AC and adjusted fot 8+ weapons based on an edjucated guess (when the appear in the game, etc)
2019-12-23 23:24:44 +01:00

88 lines
2.9 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"
>
<TextView
android:text="@string/iteminfo_effect_increase_attack_cost"
android:id="@+id/abilitymodifierinfo_change_attack_cost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_attack_chance"
android:id="@+id/abilitymodifierinfo_change_attack_chance"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_attack_damage"
android:id="@+id/abilitymodifierinfo_change_attack_damage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_set_damage_modifier"
android:id="@+id/abilitymodifierinfo_set_damage_modifier"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_critical_skill"
android:id="@+id/abilitymodifierinfo_change_critical_skill"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_critical_multiplier"
android:id="@+id/abilitymodifierinfo_change_critical_multiplier"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_block_chance"
android:id="@+id/abilitymodifierinfo_change_block_chance"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_damage_resistance"
android:id="@+id/abilitymodifierinfo_change_damage_resistance"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_max_hp"
android:id="@+id/abilitymodifierinfo_change_maxhp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_max_ap"
android:id="@+id/abilitymodifierinfo_change_maxap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_movecost"
android:id="@+id/abilitymodifierinfo_change_movecost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_use_cost"
android:id="@+id/abilitymodifierinfo_change_use_cost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:text="@string/iteminfo_effect_increase_reequip_cost"
android:id="@+id/abilitymodifierinfo_change_reequip_cost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</merge>