1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

69
data-asia/SV/SV1V/008.ts Normal file
View File

@@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ワナイダーex",
'zh-tw': "操陷蛛ex",
th: "วาไนเดอร์ex",
id: "Spidops ex"
},
illustrator: "takuyoa",
rarity: "Double rare",
category: "Pokemon",
hp: 260,
types: ["Grass"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "トラップテリトリー",
'zh-tw': "陷阱地盤",
th: "แดนกับดัก",
id: "Trap Territory"
},
effect: {
ja: "このポケモンがいるかぎり、相手のバトルポケモンのにげるためのエネルギーは、1個ぶん多くなる。",
'zh-tw': "只要這隻寶可夢在場上對手的戰鬥寶可夢【撤退】所需的能量增加1個。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ พลังงานสำหรับ[หนี]ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม จะเพิ่มขึ้น 1 ลูก",
id: "Selama Pokémon ini ada di Arena, Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk Mundur bertambah 1."
}
}],
attacks: [{
cost: ["Grass", "Colorless"],
name: {
ja: "ワイヤーハング",
'zh-tw': "吊纜",
th: "เส้นใยแขวน",
id: "Wire Hang"
},
damage: "90+",
effect: {
ja: "相手のバトルポケモンのにげるためのエネルギーの数×30ダメージ追加。",
'zh-tw': "增加對手的戰鬥寶可夢【撤退】所需的能量的數量×30點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนพลังงานสำหรับ[หนี]ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x30",
id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk Mundur."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card