1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/SV6/071.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "アラブルタケ",
'zh-tw': "猛惡菇"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "danciao",
dexId: [986],
hp: 120,
types: ["Darkness"],
description: {
ja: "ある本の中で アラブルタケと 記されていた 生物は このポケモンの 可能性がある。",
'zh-tw': "某本書裡記載的一種 叫做猛惡菇的生物, 有可能就是這隻寶可夢。"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "どくをとばす",
'zh-tw': "噴毒"
},
effect: {
ja: "相手のバトルポケモンをどくにする。",
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
}
}, {
cost: ["Darkness", "Darkness", "Darkness"],
name: {
ja: "まくしなぐる",
'zh-tw': "爆毆"
},
damage: "50+",
effect: {
ja: "相手のバトルポケモンにのっているダメカンの数×50ダメージ追加。",
'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×50點傷害。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card