mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
85 lines
1.3 KiB
TypeScript
85 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Bibarel",
|
|
fr: "Bibarel",
|
|
},
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
400,
|
|
],
|
|
hp: 100,
|
|
types: [
|
|
"Water",
|
|
],
|
|
evolveFrom: {
|
|
en: "Bidoof",
|
|
fr: "Keunotor",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-BODY",
|
|
name: {
|
|
en: "Unaware",
|
|
fr: "Inconscient",
|
|
},
|
|
effect: {
|
|
en: "Prevent all effects of attacks, excluding damage, done to Bibarel.",
|
|
fr: "Prévenez tous les effets d'attaques, dégâts exclus, infligés à Castorno.",
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Amnesia",
|
|
fr: "Amnésie",
|
|
},
|
|
effect: {
|
|
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
|
|
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Ce Pokémon ne peut pas utiliser cette attaque lors du prochain tour de votre adversaire.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Water",
|
|
"Water",
|
|
],
|
|
name: {
|
|
en: "Surf",
|
|
fr: "Surf",
|
|
},
|
|
|
|
damage: 60,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+30"
|
|
},
|
|
],
|
|
|
|
retreat: 3,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|