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

63
data-asia/SV/SV4a/321.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "マスカーニャex",
'zh-tw': "魔幻假面喵ex",
id: "Meowscarada ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 310,
types: ["Grass"],
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "ブーケマジック",
'zh-tw': "花束魔法",
id: "Bouquet Magic"
},
effect: {
ja: "自分の番に、自分の手札から「基本エネルギー」を1枚トラッシュするなら、1回使える。相手のベンチポケモン1匹に、ダメカンを3個のせる。",
'zh-tw': "在自己的回合若從自己的手牌將1張「基本【草】能量」卡丟棄則可使用1次。在對手的1隻備戰寶可夢身上放置3個傷害指示物。",
id: "Dapat digunakan 1 kali pada giliran sendiri jika membuang 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri ke Trash. Letakkan 3 Token Kerusakan pada 1 Pokémon Cadangan lawan."
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "スクラッチネイル",
'zh-tw': "抓刮銳爪",
id: "Scratch Nail"
},
damage: "100+",
effect: {
ja: "相手のバトルポケモンにダメカンがのっているなら、120ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢身上放置有傷害指示物則增加120點傷害。",
id: "Jika Pokémon Bertarung lawan memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 120."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card