|
52 | 52 | <ImageSource x:Key="SorceryPointUsed" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_sorc_spent.png</ImageSource>
|
53 | 53 | <ImageSource x:Key="SorceryPointUnavailable" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_sorc_missing.png</ImageSource>
|
54 | 54 |
|
55 |
| - <ImageSource x:Key="PsiPoint" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_psi_d.png</ImageSource> |
| 55 | + <!-- MOD START - Custom action resources --> |
| 56 | + <ImageSource x:Key="PsiPoint" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_psi_d.png</ImageSource> |
56 | 57 | <ImageSource x:Key="PsiPointUsed" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_psi_spent.png</ImageSource>
|
57 | 58 | <ImageSource x:Key="PsiPointUnavailable" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_psi_missing.png</ImageSource>
|
58 | 59 |
|
|
67 | 68 | <ImageSource x:Key="RampageDie" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_rampagedie_d.png</ImageSource>
|
68 | 69 | <ImageSource x:Key="RampageDieUsed" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_rampagedie_spent.png</ImageSource>
|
69 | 70 | <ImageSource x:Key="RampageDieUnavailable" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_rampagedie_missing.png</ImageSource>
|
| 71 | + <!-- MOD END --> |
70 | 72 |
|
71 | 73 | <ImageSource x:Key="KiPoint" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_ki.png</ImageSource>
|
72 | 74 | <ImageSource x:Key="KiPointUsed" >pack://application:,,,/GustavNoesisGUI;component/Assets/Shared/Resources/ico_classRes_ki_spent.png</ImageSource>
|
|
1323 | 1325 | <DataTrigger Binding="{Binding TypeId}" Value="SorceryPoint">
|
1324 | 1326 | <Setter Property="Source" Value="{StaticResource SorceryPoint}"/>
|
1325 | 1327 | </DataTrigger>
|
| 1328 | + <!-- MOD START - Custom action resources --> |
1326 | 1329 | <DataTrigger Binding="{Binding TypeId}" Value="PsiPoint">
|
1327 | 1330 | <Setter Property="Source" Value="{StaticResource PsiPoint}"/>
|
1328 | 1331 | </DataTrigger>
|
|
1332 | 1335 | <DataTrigger Binding="{Binding TypeId}" Value="HitDice">
|
1333 | 1336 | <Setter Property="Source" Value="{StaticResource HitDice}"/>
|
1334 | 1337 | </DataTrigger>
|
| 1338 | + <DataTrigger Binding="{Binding TypeId}" Value="RampageDie"> |
| 1339 | + <Setter Property="Source" Value="{StaticResource RampageDie}"/> |
| 1340 | + </DataTrigger> |
| 1341 | + <!-- MOD END --> |
1335 | 1342 | <DataTrigger Binding="{Binding TypeId}" Value="KiPoint">
|
1336 | 1343 | <Setter Property="Source" Value="{StaticResource KiPoint}"/>
|
1337 | 1344 | </DataTrigger>
|
|
1423 | 1430 | <Setter Property="Source" Value="{StaticResource SorceryPointUnavailable}"/>
|
1424 | 1431 | </MultiDataTrigger.Setters>
|
1425 | 1432 | </MultiDataTrigger>
|
| 1433 | + <!-- MOD START - Custom action resources --> |
1426 | 1434 | <MultiDataTrigger>
|
1427 | 1435 | <MultiDataTrigger.Conditions>
|
1428 | 1436 | <Condition Binding="{Binding TypeId}" Value="PsiPoint"/>
|
|
1453 | 1461 | <Setter Property="Source" Value="{StaticResource HitDiceUnavailable}"/>
|
1454 | 1462 | </MultiDataTrigger.Setters>
|
1455 | 1463 | </MultiDataTrigger>
|
| 1464 | + <MultiDataTrigger> |
| 1465 | + <MultiDataTrigger.Conditions> |
| 1466 | + <Condition Binding="{Binding TypeId}" Value="RampageDie"/> |
| 1467 | + <Condition Binding="{Binding Value}" Value="0"/> |
| 1468 | + <Condition Binding="{Binding IgnoreCost}" Value="False"/> |
| 1469 | + </MultiDataTrigger.Conditions> |
| 1470 | + <MultiDataTrigger.Setters> |
| 1471 | + <Setter Property="Source" Value="{StaicResource RampageDieUnavailable}"/> |
| 1472 | + </MultiDataTrigger.Setters> |
| 1473 | + </MultiDataTrigger> |
| 1474 | + <!-- MOD END --> |
1456 | 1475 | <MultiDataTrigger>
|
1457 | 1476 | <MultiDataTrigger.Conditions>
|
1458 | 1477 | <Condition Binding="{Binding TypeId}" Value="KiPoint"/>
|
|
1596 | 1615 | <Setter Property="Source" Value="{StaticResource SorceryPointUsed}"/>
|
1597 | 1616 | </MultiDataTrigger.Setters>
|
1598 | 1617 | </MultiDataTrigger>
|
| 1618 | + <!-- MOD START - Custom action resources --> |
1599 | 1619 | <MultiDataTrigger >
|
1600 | 1620 | <MultiDataTrigger.Conditions>
|
1601 | 1621 | <Condition Binding="{Binding TypeId}" Value="PsiPoint"/>
|
|
1636 | 1656 | <Setter Property="Source" Value="{StaticResource RampageDieUsed}"/>
|
1637 | 1657 | </MultiDataTrigger.Setters>
|
1638 | 1658 | </MultiDataTrigger>
|
| 1659 | + <!-- MOD END --> |
1639 | 1660 | <MultiDataTrigger >
|
1640 | 1661 | <MultiDataTrigger.Conditions>
|
1641 | 1662 | <Condition Binding="{Binding TypeId}" Value="KiPoint"/>
|
|
0 commit comments