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

52
data-asia/S/S11/027.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "螢光魚"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 50,
types: ["Water"],
description: {
'zh-tw': "會用發光的尾鰭引誘獵物。白天會待在海面附近, 到了夜裡就會向深海移動。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "海之伴奏"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。從自己的手牌選擇1張【水】能量卡附於自己的場上持有「隨興游水」招式的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "水槍"
},
damage: 10,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card