forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path007.ts
More file actions
67 lines (52 loc) · 1.03 KB
/
Copy path007.ts
File metadata and controls
67 lines (52 loc) · 1.03 KB
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
import { Card } from "../../../interfaces"
import Set from "../Chaos Rising"
const card: Card = {
set: Set,
name: {
en: "Chesnaught"
},
illustrator: "Uta",
rarity: "Rare",
category: "Pokemon",
dexId: [652],
hp: 180,
types: ["Grass"],
evolveFrom: {
en: "Quilladin"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
en: "Needle Armor"
},
effect: {
en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon (even if this Pokémon is Knocked Out), place 3 damage counters on the Attacking Pokémon for each Grass Energy attached to this Pokémon."
}
}],
attacks: [{
name: {
en: "Impound"
},
cost: ["Grass", "Grass", "Colorless"],
damage: 160,
effect: {
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 4,
regulationMark: "J",
variants: [
{
type: "normal",
thirdParty: {
tcgplayer: 693460
}
}
],
}
export default card