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/SC1b/027.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "以歐路普"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 130,
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': "增加這隻寶可夢身上附加的【超】能量的數量×30點傷害。"
},
damage: "90+",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card