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

50
data-asia/SV/SV4s/020.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Numel"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
id: "Magma bersuhu 1200 ℃ membara di dalam tubuh Numel. Pergerakan Pokémon ini menjadi lamban karena magma tersebut mengeras ketika suhu udara menjadi dingin."
},
stage: "Basic",
attacks: [{
name: {
id: "Menghanguskan"
},
effect: {
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
},
cost: ["Fire"]
}, {
name: {
id: "Heat Blast"
},
damage: 60,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card