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

56
data-asia/SV/SV4s/086.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Crobat"
},
illustrator: "Uta",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
description: {
id: "Crobat mengepak dan mengendalikan 4 sayapnya dengan sesukanya. Di gua yang sempit pun, Pokémon ini terbang berkeliling tanpa menurunkan kecepatannya."
},
stage: "Stage2",
attacks: [{
name: {
id: "Mad Echo"
},
effect: {
id: "Pemain memilih salah satu antara Item atau Supporter. Pada giliran lawan berikutnya, lawan tidak dapat memainkan Trainer yang telah dipilih dari Kartu Pegangan."
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
id: "Cutter Wind"
},
damage: 130,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card