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

62
data-asia/SV/SV2P/040.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "コヨザルex",
'zh-tw': "棄世猴ex",
th: "โคโนะโยซารุex",
id: "Annihilape ex"
},
illustrator: "PLANETA Hiiragi",
rarity: "Double rare",
category: "Pokemon",
hp: 320,
types: ["Fighting"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fighting"],
name: {
ja: "アンガーグラッジ",
'zh-tw': "憤懣恨怨",
th: "พิโรธโกรธแค้น",
id: "Anger Grudge"
},
damage: "20×",
effect: {
ja: "このポケモンにダメカンを12個までのせ、のせた数×20ダメージ。",
'zh-tw': "在這隻寶可夢身上放置最多12個傷害指示物造成放置的數量×20點傷害。",
th: "วางตัวนับแดเมจได้สูงสุด 12 ตัวบนโปเกมอนนี้ แดเมจจะเท่ากับจำนวนที่วาง x20",
id: "Letakkan paling banyak 12 Token Kerusakan pada Pokémon ini, serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang diletakkan."
}
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "ちきゅうなげ",
'zh-tw': "地球上投",
th: "ขว้างใส่โลก",
id: "Bantingan Keras"
},
damage: 150
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card