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

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Dondozo"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 160,
types: ["Water"],
description: {
id: "Meskipun rakus, Dondozo tidak pandai menangkap makanannya. Pokémon ini membentuk tim dengan Tatsugiri untuk berburu dan menangkap mangsa."
},
stage: "Basic",
attacks: [{
name: {
id: "Suplementasi Lahap Sekaligus"
},
effect: {
id: "Lihat 5 kartu dari atas Deck sendiri, pilih sesukanya Energi Dasar di antaranya, lalu kenakan pada Pokémon ini. Kocok kembali sisa kartu ke Deck."
},
cost: ["Colorless"]
}, {
name: {
id: "Hydro Splash"
},
damage: 180,
cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card