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

56
data-asia/SV/SV3s/053.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Thundurus"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 110,
types: ["Lightning"],
description: {
id: "Thundurus terbang sambil menjatuhkan petir ke sana kemari dan menyebabkan kebakaran gunung, sehingga Pokémon ini tidak disukai."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
id: "Cuaca Buruk"
},
effect: {
id: "Selama Pokémon ini ada di Arena Bertarung, semua Pokémon Cadangan sendiri tidak menerima kerusakan akibat serangan lawan."
}
}],
attacks: [{
name: {
id: "Gigant Bolt"
},
effect: {
id: "Pokémon ini juga menerima kerusakan sejumlah 90."
},
damage: 140,
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card