mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
57
data/Sword & Shield/Fusion Strike/163.ts
Normal file
57
data/Sword & Shield/Fusion Strike/163.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sharpedo",
|
||||
fr: "Sharpedo",
|
||||
es: "Sharpedo",
|
||||
it: "Sharpedo",
|
||||
pt: "Sharpedo",
|
||||
de: "Tohaido"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Carvanha",
|
||||
fr: "Carvanha",
|
||||
es: "Carvanha",
|
||||
it: "Carvanha",
|
||||
pt: "Carvanha",
|
||||
de: "Kanivanha"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "Hasuno",
|
||||
|
||||
description: {
|
||||
en: "It drinks in seawater and jets it from its rear to propel itself. It's very sensitive to the scent of blood."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Sharp Fang"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user