mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
64 lines
901 B
TypeScript
64 lines
901 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Carvanha",
|
||
fr: "Carvanha",
|
||
es: "Carvanha",
|
||
it: "Carvanha",
|
||
pt: "Carvanha",
|
||
de: "Kanivanha"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 50,
|
||
types: ["Water"],
|
||
stage: "Basic",
|
||
illustrator: "Kyoko Umemoto",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
es: "Apisonar",
|
||
it: "Carica",
|
||
pt: "Ram",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Razor Fin",
|
||
fr: "Aileron-Rasoir",
|
||
es: "Aleta Afilada",
|
||
it: "Pinnalama",
|
||
pt: "Razor Fin",
|
||
de: "Rasierflosse"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Water", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card |