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:
56
data-asia/S/S10P/010.ts
Normal file
56
data-asia/S/S10P/010.ts
Normal 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
|
Reference in New Issue
Block a user