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/143.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Shiftry"
},
illustrator: "SIE NANAHARA",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
id: "Pokémon yang ditakuti sebagai Dewa Hutan. Shiftry memiliki kemampuan untuk membaca pikiran lawan dan mengantisipasinya."
},
stage: "Stage2",
attacks: [{
name: {
id: "Tornado Pengusir"
},
effect: {
id: "Pilih 3 Pokémon Cadangan lawan. Setelah itu, kocok kembali semua Pokémon Cadangan lawan yang tidak dipilih dan semua kartu yang dikenakannya ke Deck lawan."
},
cost: ["Grass"]
}, {
name: {
id: "Energy Loop"
},
effect: {
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu kembalikan ke Kartu Pegangan."
},
damage: 140,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card