mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
80 lines
1.5 KiB
TypeScript
80 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Rising Rivals'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Carvanha",
|
|
fr: "Carvanha Niv. 13",
|
|
de: "Kanivanha"
|
|
},
|
|
illustrator: "Midori Harada",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
318,
|
|
],
|
|
hp: 40,
|
|
types: [
|
|
"Darkness",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Scary Face",
|
|
fr: "Grimace",
|
|
de: "Grimasse"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon can't attack or retreat during your opponent's next turn.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer ou battre en retraite lors du prochain tour de votre adversaire.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" kann das Verteidigende Pokémon im nächsten Zug deines Gegners weder angreifen noch sich zurückziehen."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Darkness",
|
|
],
|
|
name: {
|
|
en: "Whirlpool",
|
|
fr: "Siphon",
|
|
de: "Whirlpool"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, discard an Energy 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.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" lege 1 Energie, die am Verteidigenden Pokémon angelegt ist, auf den Ablagestapel deines Gegners."
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Lightning",
|
|
value: "+10"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|