1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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/SV2a/070.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ウツドン",
'zh-tw': "口呆花",
th: "อุซึดง",
id: "Weepinbell"
},
illustrator: "Jerky",
rarity: "Common",
category: "Pokemon",
dexId: [70],
hp: 90,
types: ["Grass"],
description: {
ja: "まず 毒の粉を 吐き 相手の 動きを 止めてしまってから 溶解液で とどめを 刺す。",
'zh-tw': "會先吐出有毒的粉末, 讓對手停止行動後, 再用溶解液解決對手。",
th: "ก่อนอื่นจะพ่นผงพิษหยุดการเคลื่อนไหวของฝ่ายตรงข้ามไว้ก่อน แล้วปิดท้ายด้วยของเหลวทำละลาย",
id: "Weepinbell terlebih dahulu menyemburkan bubuk beracun untuk menghentikan gerakan lawan, lalu menghabisinya menggunakan cairan pelebur."
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "いあいぎり",
'zh-tw': "居合斬",
th: "ตัด",
id: "Potongan Iai"
},
damage: 30
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "しるをとばす",
'zh-tw': "噴汁",
th: "ฉีดพ่นน้ำ",
id: "Menyemprotkan Getah"
},
damage: 50
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card