1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

51
data-asia/SV/SV5s/055.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Iron Thorns"
},
illustrator: "Takeshi Nakamura",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
description: {
id: "Terdapat karakteristik yang cocok dengan objek bernama Iron Thorns yang diperkenalkan oleh sebuah jurnal ekspedisi pada Pokémon ini."
},
stage: "Basic",
attacks: [{
name: {
id: "Destructive Presser"
},
effect: {
id: "Balikkan 5 kartu dari atas Deck sendiri sehingga sisi depannya menjadi menghadap ke atas, serangan ini memberikan kerusakan sejumlah 70 untuk tiap lembar kartu Futur yang ada di antaranya. Buang kartu Futur yang sisi depannya dijadikan menghadap ke atas tersebut ke Trash, lalu kocok kembali sisa kartu ke Deck."
},
damage: "70×",
cost: ["Lightning", "Colorless"]
}, {
name: {
id: "Megaton Lariat"
},
damage: 140,
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card