1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

117
cards/sm/sm4/101.ts Normal file
View File

@ -0,0 +1,117 @@
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: "sm4-101",
localId: 101,
// Card informations
name: {
en: "Gyarados-GX",
fr: "Léviator-GX",
},
hp: 240,
type: [
Type.WATER,
],
dexId: 130,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm4/101/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/101/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm4/101/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/101/high.png",
},
},
evolveFrom: {
en: "Magikarp",
fr: "Magicarpe",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Waterfall",
fr: "Cascade",
},
damage: 70
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Draconic Disaster",
fr: "Désastre Draconien",
},
text: {
en: "If there is any Stadium card in play, this attack does 100 more damage. Then, discard that Stadium card.",
fr: "Sil y a une carte Stade en jeu, cette attaque inflige 100 dégâts supplémentaires. Ensuite, défaussez la carte Stade.",
},
damage: 100
},{
cost: [
Type.WATER
],
name: {
en: "Dread Storm-GX",
fr: "Tempête dEffroi-GX",
},
text: {
en: "Discard an Energy from each of your opponent's Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Défaussez une Énergie de chacun des Pokémon de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Crimson Invasion",
code: "sm4"
}
}
export default card