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

56
data-asia/S/S10P/010.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "以歐路普"
},
illustrator: "yuu",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "以頭腦聰慧而聞名。大大的腦子是牠擁有 出眾精神力量的證明。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "阻礙貼附"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。從對手的棄牌區選擇最多3張能量卡以任意方式附於對手的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "神秘波"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。"
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card