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

58
data-asia/SV/SV6/005.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "イルミーゼ",
'zh-tw': "甜甜螢"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Orca",
dexId: [314],
hp: 70,
types: ["Grass"],
description: {
ja: "バルビートを 誘導して 夜空に サインを 描く。 サインの 意味を 研究する 学者も いる。",
'zh-tw': "會誘導電螢蟲在夜空中 描繪記號。也有些學者 在研究記號的含意。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "スローパフューム",
'zh-tw': "慢芬香"
},
effect: {
ja: "このワザは、後攻プレイヤーの最初の番にだけ使える。相手のベンチポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、相手の山札にもどして切る。",
'zh-tw': "這個招式只可在後攻玩家的最初回合使用。選擇1隻對手的備戰寶可夢將那隻寶可夢與附加的卡全部放回對手的牌庫並重洗。"
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "かっくう",
'zh-tw': "滑翔"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card