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:
45
data-asia/SV/SV4s/101.ts
Normal file
45
data-asia/SV/SV4s/101.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Tatsugiri"
|
||||
},
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Dragon"],
|
||||
|
||||
description: {
|
||||
id: "Pokémon yang sangat licik. Tatsugiri pura-pura melemah untuk memancing mangsanya, lalu memerintah Pokémon rekannya untuk menyerang mangsa tersebut."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Pistol Air"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Strategi Bertahan Hidup"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pilih paling banyak 2 kartu sesukanya dari Deck sendiri, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck. Pemain dapat menukar Pokémon ini dengan Pokémon Cadangan."
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user