ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
----



This document is intended to list all possible decks the ai can come at you with.
Story modes’s quirk is that it has an AI boost field. This is here to show you just how big of a disadvantage you’re at.
Round 2 just has everyone at an impossibly high level and has stats you can never hope to match.
Battle mode contains 3 tiers of characters based mostly on their form. Final form characters are generally tier 3,
untransformed are usually tier 1, and anything in between is usually tier 2. You’ll only ever run into characters in the same tier.
As for their decks, each character tends to run their own deck and will not deviate from their strategy.

An important note, in battle mode, the level the Ai is at is determined by a formula.

If (playerLevel >= 5 && playerLevel < 9) playerLevel = 5;
aiUpgrades = (playerLevel – 1) * 2;
aiLevel = aiUpgrades + 1;

This means that the ai will always have 2 upgrades for every 1 upgrade you can have.
Star upgrades: Hp/Str/Ki/Spd

PLevel 1 | 0/0/0/0 | aiLevel 1
PLevel 2 | 1/0/0/1 | aiLevel 3
PLevel 3 | 1/1/1/1 | aiLevel 5
PLevel 4 | 2/1/2/1 | aiLevel 7
PLevel 5 | 2/2/2/2 | aiLevel 9

On a funny side note, a level 9 or above character breaks the ai. Have you ever seen a level 35 Jeice?

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