mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
108 lines
1.9 KiB
TypeScript
108 lines
1.9 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: "dp3-74",
|
|
localId: 74,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Vibrava",
|
|
fr: "Vibraninf",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
dexId: 329,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp3/74/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp3/74/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp3/74/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp3/74/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Trapinch",
|
|
fr: "Kraknoix",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 10,
|
|
name: "Kouki Saitou"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIGHTING
|
|
],
|
|
name: {
|
|
en: "Sand Wind",
|
|
fr: "Vent sablonneux",
|
|
},
|
|
text: {
|
|
en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
|
fr: "Inflige 10 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Hyper Beam",
|
|
fr: "Ultralaser",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
|
|
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
|
|
},
|
|
damage: 40
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.WATER,
|
|
value: "+20"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.LIGHTNING,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Secret Wonders",
|
|
code: "dp3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|