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

55
data-asia/SV/SVD/103.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "飄香豚"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "以自己細緻透亮的肌膚為傲。會從尾巴的前端 釋放出凝縮的香氣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "搖晃芬香"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "陷入踢"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這隻寶可夢也受到60點傷害。"
},
damage: 160,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card