mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
69
data-asia/SV/SV2a/003.ts
Normal file
69
data-asia/SV/SV2a/003.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "フシギバナex",
|
||||
'zh-tw': "妙蛙花ex",
|
||||
th: "ฟุชิกิบานะex",
|
||||
id: "Venusaur ex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 340,
|
||||
types: ["Grass"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
ja: "やすらぎのはな",
|
||||
'zh-tw': "平和之花",
|
||||
th: "ดอกไม้สงบใจ",
|
||||
id: "Bunga Ketenangan"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。自分のポケモン1匹のHPを「60」回復する。",
|
||||
'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將自己的1隻寶可夢恢復「60」HP。",
|
||||
th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [60]",
|
||||
id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Arena Bertarung. Pulihkan HP 1 Pokémon sendiri sejumlah 60."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "もうどくウィップ",
|
||||
'zh-tw': "劇毒鞭打",
|
||||
th: "แส้พิษร้ายแรง",
|
||||
id: "Cambuk Racun Ekstrem"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
|
||||
effect: {
|
||||
ja: "相手のバトルポケモンをどくとこんらんにする。",
|
||||
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。",
|
||||
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]และ[สับสน]",
|
||||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun dan Pusing."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user