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

52
data-asia/S/S8b/006.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "櫻花兒"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "盛開的花瓣中散發出的微微香氣會吸引蟲寶可夢聚集而來。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "春爛漫"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。從自己的手牌選擇1張【草】能量卡附於自己的寶可夢「擁有規則的寶可夢」除外身上。"
}
}],
attacks: [{
name: {
'zh-tw': "種子炸彈"
},
damage: 70,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card