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/S10b/029.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "閃電鳥"
},
illustrator: "Yuya Oka",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "能夠自在地操縱雷電。相傳牠的巢穴就在烏黑的雷雲之中。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "電氣象徵"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的【雷】屬性的【基礎】寶可夢(「閃電鳥」 除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+10」點。"
}
}],
attacks: [{
name: {
'zh-tw': "雷電球"
},
damage: 110,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card