1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00

42 lines
612 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "カラナクシ"
},
illustrator: "Shinya Komatsu",
rarity: "Common",
category: "Pokemon",
dexId: [422],
hp: 70,
types: ["Water"],
description: {
ja: "磯辺で 見かけることが 多い。 ある程度の 時間であれば 陸上でも 活動できる。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "うちみず"
},
damage: 30
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2
}
export default card