1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

56 lines
927 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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Tranquill"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
description: {
id: "Kecepatan terbang Tranquill di angkasa biasa saja. Akan tetapi, ia dapat mengingat wajah pelatih dan posisi sarangnya sehingga selalu bisa pulang kembali walau terpisah di tempat sejauh apa pun."
},
stage: "Stage1",
attacks: [{
name: {
id: "Terbang Cepat"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
id: "Jet Wing"
},
effect: {
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 70,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "H"
}
export default card