mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 23:22:11 +00:00
97 lines
1.6 KiB
TypeScript
97 lines
1.6 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: "pl3-104",
|
|
localId: 104,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Feebas",
|
|
fr: "Barpau",
|
|
},
|
|
|
|
hp: 30,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 349,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/104/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/104/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/104/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/104/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 9,
|
|
name: "Mitsuhiro Arita"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Surprise Attack",
|
|
fr: "Attaque surprise",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If tails, this attack does nothing.",
|
|
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.WATER
|
|
],
|
|
name: {
|
|
en: "Count and Draw",
|
|
fr: "Compter et piocher",
|
|
},
|
|
text: {
|
|
en: "Draw a card for each of your opponent's Pokémon that isn't an Evolved Pokémon.",
|
|
fr: "Piochez une carte pour chaque Pokémon de votre adversaire qui n'est pas un Pokémon Évolué.",
|
|
},
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+10"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Supreme Victors",
|
|
code: "pl3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|