1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

121 lines
2.4 KiB
TypeScript

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: "pl2-5",
localId: 5,
// Card informations
name: {
en: "Flygon",
fr: "Flygon Niv. 65",
},
hp: 120,
type: [
Type.COLORLESS,
],
dexId: 330,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/5/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/5/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/5/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/5/high.png",
},
},
evolveFrom: {
en: "Vibrava",
fr: "Vibraninf",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 350,
type: AbilityType.POKEBODY,
name: {
en: "Rainbow Float",
fr: "Flottement arc-en-ciel",
},
text: {
en: "If any basic Energy card attached to Flygon is the same type as any of your Pokémon, the Retreat Cost for those Pokémon is 0.",
fr: "Si une carte Énergie de base attachée à Libegon est du même type qu'un de vos Pokémon, le Coût de retraite de ces Pokémon est de 0.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sand Wall",
fr: "Mur de sable",
},
text: {
en: "Discard a Stadium card your opponent has in play. If you do, prevent all effects of an attack, including damage, done to Flygon during your opponent's next turn.",
fr: "Défaussez une carte Stade que votre adversaire a en jeu. Prévenez alors tous les effets d'attaque, dégâts inclus, infligés à Libegon lors du prochain tour de votre adversaire.",
},
damage: 40
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Power Swing",
fr: "Va-et-vient puissant",
},
text: {
en: "Does 60 damage plus 10 more damage for each Evolved Pokémon on your Bench.",
fr: "Inflige 60 dégâts plus 10 dégâts supplémentaires pour chaque Pokémon Évolué se trouvant sur votre Banc.",
},
damage: 60
}],
weaknesses: [{
type: Type.COLORLESS,
value: "+30"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card