1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +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

57
data-asia/S/S10P/030.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "艾姆利多"
},
illustrator: "zig",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "在湖底沉睡。 但據說牠的靈魂會跑出來, 在水面徘徊飛行。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "意識之帳"
},
effect: {
'zh-tw': "若自己的場上有「由克希」「亞克諾姆」,則自己的所有寶可夢的弱點全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "意念頭錘"
},
damage: 30,
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card