1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

105 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm9-30",
localId: 30,
// Card informations
name: {
en: "Gyarados",
fr: "Léviator",
},
hp: 150,
type: [
Type.WATER,
],
dexId: 130,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/30/low",
fr: "https://assets.tcgdex.net/fr/sm/sm9/30/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/30/high",
fr: "https://assets.tcgdex.net/fr/sm/sm9/30/high",
},
},
evolveFrom: {
en: "Magikarp",
fr: "Magicarpe",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 80,
name: "Hasuno"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Distilled Blast",
fr: "Explosion Distillée",
},
text: {
en: "Reveal the top 7 cards of your deck. This attack does 30 more damage times the amount of Water Energy you find there. Then, shuffle those Energy cards back into your deck and discard the other cards.",
fr: "Montrez les 7 cartes du dessus de votre deck. Cette attaque inflige 30 dégâts supplémentaires multipliés par le nombre dÉnergies Water que vous y trouvez. Ensuite, mélangez ces cartes Énergie avec votre deck et défaussez les autres cartes.",
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.WATER
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
},
text: {
en: "Discard an Energy from your opponent's Active Pokémon.",
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
},
damage: 100
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card