1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

54
data-asia/SV/SV3/087.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ポッポ",
'zh-tw': "波波",
th: "ป็อปโปะ"
},
illustrator: "Naoyo Kimura",
rarity: "Common",
category: "Pokemon",
dexId: [16],
hp: 60,
types: ["Colorless"],
description: {
ja: "戦いを 好まない おとなしい 性格だが 下手に 手を 出すと 強烈に 反撃されるぞ。",
'zh-tw': "雖然性情溫和不愛戰鬥,但要是隨意對牠出手的話,就會受到牠強烈的反擊。",
th: "มีนิสัยสงบเสงี่ยม ไม่ชอบต่อสู้ แต่ถ้าเผลอไปหาเรื่องมันเข้าล่ะก็ จะถูกโต้กลับอย่างรุนแรงเอานะ"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かぜおこし",
'zh-tw': "起風",
th: "เรียกลม"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card