mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
62
data-asia/SV/SV2D/082.ts
Normal file
62
data-asia/SV/SV2D/082.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "カラミンゴ"
|
||||
},
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
category: "Pokemon",
|
||||
dexId: [973],
|
||||
hp: 110,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
ja: "お腹に 溜めた エネルギーが くちばしから 漏れないように 首を 根元で 結んでいるらしい。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
ja: "いっきにむれる"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分の山札から「カラミンゴ」を3枚まで選び、相手に見せて、手札に加える。そして山札を切る。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "だんけつのつばさ"
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
effect: {
|
||||
ja: "自分のトラッシュにある、ワザ「だんけつのつばさ」を持つポケモンの枚数×20ダメージ。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user