-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcarddisplay.ui
142 lines (142 loc) · 4.98 KB
/
carddisplay.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CardDisplay</class>
<widget class="QWidget" name="CardDisplay">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>325</width>
<height>225</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>325</width>
<height>225</height>
</size>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<property name="toolTip">
<string><html><head/><body><p>Shows the chance of seeing a rare card in the next combat reward screen. Chances start small (resetting between acts) and will increase with each common card rolled. The chance will also reset upon seeing a rare card. Elites drop rares at a slightly higher rate than regular fights and that probability is shown on the second row.</p><p>The full probabilities are a bit more complicated and deserve a better writeup at some point, but every common card seen (uncommons do not change anything) will roughly increase your chance of seeing a rare card a little over 1%.</p><p>This number is modified by the relics &quot;Busted Crown&quot;, &quot;Question Card&quot;, &quot;Prayer Wheel&quot;, and &quot;Nloth's Gift&quot;, as they affect the number of cards seen at the end of each fight.</p><p>Note: rare cards will never drop upgraded without the egg relics as they ignore the act/ascension's upgrade chance.</p><p>WARNING: these numbers may be incorrect! I still need to test the calculations a bit further and there may be bugs (especially with relic interactions). They should hopefully be correct for the basic no relic case.</p></body></html></string>
</property>
<layout class="QGridLayout" name="gridLayout">
<property name="leftMargin">
<number>20</number>
</property>
<property name="topMargin">
<number>20</number>
</property>
<property name="rightMargin">
<number>20</number>
</property>
<property name="bottomMargin">
<number>20</number>
</property>
<property name="horizontalSpacing">
<number>10</number>
</property>
<item row="0" column="0" colspan="2">
<widget class="QLabel" name="label_4">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="resources/resources.qrc">:/icons/deck.svg</pixmap>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_5">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="resources/resources.qrc">:/icons/deck_elite.svg</pixmap>
</property>
</widget>
</item>
<item row="1" column="3">
<widget class="QLabel" name="label_elite_rare_chance">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Kreon</family>
<pointsize>32</pointsize>
</font>
</property>
<property name="text">
<string>0.00%</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="3">
<widget class="QLabel" name="label_rare_chance">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Kreon</family>
<pointsize>32</pointsize>
</font>
</property>
<property name="text">
<string>0.00%</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="2" rowspan="2">
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>10</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<resources>
<include location="resources/resources.qrc"/>
</resources>
<connections/>
</ui>