mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
55 lines
888 B
TypeScript
55 lines
888 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV5s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Delcatty"
|
||
},
|
||
|
||
illustrator: "Keisin",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
id: "Delcatty sangat membenci tempat kotor. Ia selalu merawat bulunya di tempat yang nyaman."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Ekor Pengecoh"
|
||
},
|
||
|
||
effect: {
|
||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing."
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
id: "Energy Mixer"
|
||
},
|
||
|
||
effect: {
|
||
id: "Pilih sesukanya Energi yang dikenakan pada Pokémon di Arena sendiri, lalu pindahkan sesukanya ke Pokémon sendiri."
|
||
},
|
||
|
||
damage: 110,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |