1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

78
data/XY/Evolutions/34.ts Normal file
View File

@ -0,0 +1,78 @@
import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Gyarados",
fr: "Léviator",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
130,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Magikarp",
fr: "Magicarpe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Bubble Beam",
fr: "Bulles dO",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 50,
},
{
cost: [
"Water",
"Water",
"Water",
"Water",
],
name: {
en: "Dragon Rage",
fr: "Draco-Rage",
},
effect: {
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
fr: "Lancez 2 pièces. Si vous obtenez au moins un côté pile, cette attaque ne fait rien.",
},
damage: 180,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 3,
}
export default card