mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
45 lines
748 B
TypeScript
45 lines
748 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV6s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Applin"
|
|
},
|
|
|
|
illustrator: "Teeziro",
|
|
category: "Pokemon",
|
|
hp: 40,
|
|
types: ["Dragon"],
|
|
|
|
description: {
|
|
id: "Applin hidup di dalam buah apel. Jika apelnya habis, Pokémon ini akan melemah karena kehilangan cairan tubuhnya."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
id: "Mencari Teman"
|
|
},
|
|
|
|
effect: {
|
|
id: "Pilih 1 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
|
|
},
|
|
|
|
cost: ["Colorless"]
|
|
}, {
|
|
name: {
|
|
id: "Tubrukan Menggelinding"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Grass", "Fire"]
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |