mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
71 lines
1.1 KiB
TypeScript
71 lines
1.1 KiB
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,
|
||
|
||
description: {
|
||
en: "With its sturdy jaws and fangs, it can easily chomp wooden boats to splinters. It fights with Basculin over food."
|
||
},
|
||
|
||
dexId: [318],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |