1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00
2024-12-19 11:52:36 +01:00

70 lines
997 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Holon Phantoms'
const card: Card = {
name: {
en: "Carvanha δ",
fr: "Carvanha δ",
de: "Kanivanha"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
318,
],
hp: 40,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
name: {
en: "Bite",
fr: "Morsure",
de: "Biss"
},
damage: 10,
cost: ["Colorless"]
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Reckless Charge",
fr: "Attaque imprudente",
de: "Waghalsiger Sturmangriff"
},
effect: {
en: "Flip a coin. If tails, Carvanha does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Carvanha s'inflige 10 dégâts.",
de: "Wirf 1 Münze. Bei \"Zahl\" fügt sich Kanivanha selbst 10 Schadenspunkte zu."
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card