mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
52
data-asia/SV/SV5a/081.ts
Normal file
52
data-asia/SV/SV5a/081.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV5a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "テツノイバラex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
category: "Pokemon",
|
||||
hp: 230,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
ja: "イニシャライズ"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンがバトル場にいるかぎり、おたがいの場の「ルールを持つポケモン」(「未来」のポケモンをのぞく)の特性は、すべてなくなる。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ボルトサイクロン"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンについているエネルギーを1個選び、ベンチポケモンにつけ替える。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user