forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path018.ts
More file actions
80 lines (67 loc) · 2.63 KB
/
Copy path018.ts
File metadata and controls
80 lines (67 loc) · 2.63 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
import { Card } from "../../../interfaces"
import Set from "../Phantasmal Flames"
const card: Card = {
set: Set,
name: {
en: "Oricorio ex",
fr: "Plumeline-ex",
es: "Oricorio ex",
'es-mx': "Oricorio ex",
de: "Choreogel-ex",
it: "Oricorio-ex",
pt: "Oricorio ex"
},
rarity: "Double rare",
category: "Pokemon",
dexId: [741],
hp: 190,
types: ["Fire"],
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Excited Turbo",
fr: "Turbo Dynamique",
es: "Impulso Turbo",
'es-mx': "Turbo Vibrante",
de: "Begeisterter Turbo",
it: "Fervorturbo",
pt: "Turbo Animado"
},
effect: {
en: "As often as you like during your turn, if you have any {R} Mega Evolution Pokémon ex in play, you may use this Ability. Attach a Basic {R} Energy card from your hand to 1 of your Benched {R} Pokémon.",
fr: "Autant de fois que vous le voulez pendant votre tour, si vous avez au moins un Pokémon-ex Méga-Évolution {R} en jeu, vous pouvez utiliser ce talent. Attachez une carte Énergie {R} de base de votre main à l'un de vos Pokémon {R} de Banc.",
es: "Todas las veces que quieras durante tu turno, si tienes algún Pokémon ex Megaevolución {R} en juego, puedes usar esta habilidad. Une 1 carta de Energía {R} Básica de tu mano a uno de tus Pokémon {R} en Banca.",
'es-mx': "Cuantas veces quieras durante tu turno, si tienes algún Pokémon ex Megaevolución {R} en juego, puedes usar esta Habilidad. Une 1 carta de Energía {R} Básica de tu mano a 1 de tus Pokémon {R} en Banca.",
de: "Beliebig oft während deines Zuges, wenn du mindestens 1 {R}-Mega-Entwicklungs-Pokémon-ex im Spiel hast, kannst du diese Fähigkeit einsetzen. Lege 1 Basis-{R}-Energiekarte aus deiner Hand an 1 {R}-Pokémon auf deiner Bank an.",
it: "Durante il tuo turno, se hai dei Pokémon-ex Megaevoluzione {R} in gioco, puoi usare questa abilità tutte le volte che vuoi. Assegna a uno dei Pokémon {R} nella tua panchina una carta Energia base {R} dalla tua mano.",
pt: "Quantas vezes desejar durante o seu turno, se você tiver algum Pokémon ex de Megaevolução {R} em jogo, você poderá usar esta Habilidade. Ligue uma carta de Energia {R} Básica da sua mão a 1 dos seus Pokémon {R} no Banco."
}
}],
attacks: [{
cost: ["Fire", "Fire", "Colorless"],
name: {
en: "Fire Wing",
fr: "Aile de Feu",
es: "Ala Ígnea",
'es-mx': "Ala Ígnea",
de: "Feuerflügel",
it: "Alafiamma",
pt: "Asa de Fogo"
},
damage: 110
}],
retreat: 1,
regulationMark: "I",
illustrator: "akagi",
variants: [
{
type: "holo",
thirdParty: {
cardmarket: 857593,
tcgplayer: 662206
}
}
],
}
export default card