1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39: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

104
cards/xy/xy3/76.ts Normal file
View File

@ -0,0 +1,104 @@
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: "xy3-76",
localId: 76,
// Card informations
name: {
en: "Flygon",
fr: "Libégon",
},
hp: 130,
type: [
Type.DRAGON,
],
dexId: 330,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy3/76/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/76/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy3/76/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/76/high.png",
},
},
evolveFrom: {
en: "Vibrava",
fr: "Vibraninf",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Rainbow Shower",
fr: "Averse Arc-En-Ciel",
},
text: {
en: "Attach as many basic Energy cards as you like from your hand to your Pokémon in any way you like.",
fr: "Attachez autant d'Énergies de base que vous voulez de votre main à vos Pokémon, de la manière que vous voulez.",
},
},{
cost: [
Type.GRASS,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Sand Sweep",
fr: "Balayette Sablonneuse",
},
text: {
en: "Heal 30 damage from each of your Pokémon that has any Energy attached to it.",
fr: "Soignez 30 dégâts à chacun de vos Pokémon auquel de l'Énergie est attachée.",
},
damage: 70
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Furious Fists",
code: "xy3"
}
}
export default card