mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
48 lines
738 B
TypeScript
48 lines
738 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [318],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Carvanha",
|
|
fr: "Carvanha",
|
|
es: "Carvanha",
|
|
it: "Carvanha",
|
|
pt: "Carvanha",
|
|
de: "Kanivanha"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Darkness"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "NC Empire",
|
|
|
|
description: {
|
|
en: "With its sturdy jaws and fangs, it can easily chomp wooden boats to splinters. It fights with Basculin over food."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Bite"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |