mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
51 lines
937 B
TypeScript
51 lines
937 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV2D"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "リキキリン"
|
||
},
|
||
|
||
illustrator: "Mina Nakai",
|
||
category: "Pokemon",
|
||
dexId: [981],
|
||
hp: 140,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
ja: "頭と 尻尾の 2つの 脳波が 同期したことで エスパーパワーは キリンリキの 10倍 アップした。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "どっちかフェイス"
|
||
},
|
||
|
||
effect: {
|
||
ja: "自分または相手のどちらかを選び、選ばれたプレイヤーは、手札をすべて山札にもどして切る。その後、選ばれたプレイヤーは山札を4枚引く。"
|
||
}
|
||
}, {
|
||
cost: ["Colorless", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "パワービーム"
|
||
},
|
||
|
||
damage: 130
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |