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

54
data-asia/SV/SV5s/068.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Iron Valiant"
},
illustrator: "chibi",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
id: "Terdapat kemungkinan bahwa Pokémon ini adalah objek misterius bernama Iron Valiant yang tertera dalam suatu jurnal ekspedisi."
},
stage: "Basic",
attacks: [{
name: {
id: "Perhitungan"
},
effect: {
id: "Lihat 4 kartu dari atas Deck sendiri, tukar urutan kartu sesukanya, lalu kembalikan ke atas Deck."
},
cost: ["Psychic"]
}, {
name: {
id: "Majestic Sword"
},
effect: {
id: "Jika pada giliran ini, Supporter Futur telah dimainkan dari Kartu Pegangan, kerusakan yang diberikan bertambah sejumlah 100."
},
damage: "100+",
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card