mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
40 lines
562 B
TypeScript
40 lines
562 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV6s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Vulpix"
|
||
},
|
||
|
||
illustrator: "sowsow",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Fire"],
|
||
|
||
description: {
|
||
id: "Enam ekornya yang hangat menjadi makin indah dan bulunya makin bagus seiring dengan pertumbuhan tubuhnya."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Nyala Api"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Fire", "Fire"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |