-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy path1.ts
More file actions
120 lines (104 loc) · 2.96 KB
/
Copy path1.ts
File metadata and controls
120 lines (104 loc) · 2.96 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
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
import { Card } from '../../../interfaces'
import Set from '../Base Set'
const card: Card = {
name: {
en: "Alakazam",
fr: "Alakazam",
de: "Simsala",
it: "Alakazam"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
65,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Kadabra",
fr: "Kadabra",
it: "Kadabra"
},
stage: "Stage2",
abilities: [
{
type: "Pokemon Power",
name: {
en: "Damage Swap",
fr: "Transfert de dégâts",
de: "Schadenstausch",
it: "Scambio danni"
},
effect: {
en: "As often as you like during your turn (before your attack), you may move 1 damage counter from 1 of your Pokémon to another as long as you don't Knock Out that Pokémon. This power can't be used if Alakazam is Asleep, Confused, or Paralyzed.",
fr: "Aussi souvent que vous le souhaitez pendant votre tour (avant votre attaque), vous pouvez déplacer 1 marqueur de dégâts depuis 1 de vos Pokémon vers un autre sous réserve de ne pas mettre ce Pokémon K.O. Ce pouvoir ne peut être utilisé si Alakazam est Endormi, Confus ou Paralysé.",
de: "Bist Du am Zug, kannst Du (vor Deinem Angriff) beliebig oft eine Schadensmarke von einem Deiner Pokémon auf ein anderes verschieben, solange Du dieses Pokémon nicht kampfunfähig machst. Diese Fähigkeit kann nicht eingesetzt werden, falls Simsala schlafend, verwirrt oder gelähmt ist.",
it: "Quante volte vuoi durante il tuo turno (prima di attaccare), puoi spostare un segnalino danno da uno dei tuoi Pokémon a un altro, a patto di non mettere K.O. quel Pokémonon. Questo potere non può essere usato se Alakazam è Addormentato, Confuso o Paralizzato."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Confuse Ray",
fr: "Onde Folie",
de: "Konfustrahl",
it: "Storidiraggio"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon défenseur est maintenant Confus.",
de: "Wirf eine Münze bei \"Kopf\" ist das verteidigende Pokémon verwirrt",
it: "Lancia una moneta. Se esce testa, il Pokémon Difensore è Confuso."
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
variants: [
{
type: "holo",
subtype: "1999-2000-copyright",
},
{
type: "holo",
subtype: "unlimited"
},
{
type: "holo",
subtype: "shadowless",
stamp: ["1st-edition"],
thirdParty: {
cardmarket: 273696,
tcgplayer: 42346
}
},
{
type: "holo",
subtype: "shadowless",
thirdParty: {
cardmarket: 660227
}
}
],
description: {
fr: "Son super cerveau peut effectuer des opérations plus rapidement qu'un super ordinateur. Il a un Q.I. de 5000.",
it: "Il suo cervello è più potente di un supercomputer. Dicono che abbia un quoziente di intelligenza di 5.000. LIV 42 N.65"
},
}
export default card