1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

50
data-asia/SV/SV5s/082.ts Normal file
View File

@@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Great Tusk"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
id: "Terdapat laporan kesaksian atas Pokémon ini dalam beberapa tahun terakhir. Nama Great Tusk diambil dari nama makhluk hidup yang tercantum dalam suatu buku."
},
stage: "Basic",
attacks: [{
name: {
id: "Fondasi Runtuh"
},
effect: {
id: "Buang 1 kartu dari atas Deck lawan ke Trash. Jika pada giliran ini, Supporter Purba telah dimainkan dari Kartu Pegangan, buang lagi 3 kartu tambahan ke Trash."
},
cost: ["Colorless", "Colorless"]
}, {
name: {
id: "Taring Raksasa"
},
damage: 160,
cost: ["Fighting", "Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card