From 412c3c8a264f2d0b6c7759ef11a46bccc51832b1 Mon Sep 17 00:00:00 2001 From: pyrQ <30827955+pyrQ@users.noreply.github.com> Date: Wed, 6 Nov 2024 11:03:36 +0200 Subject: [PATCH] Added new Card function descriptions --- api/functions/Card/IsFlipSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsFusionSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsGeminiSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsLinkSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsNormalSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsPendulumSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsRitualSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsSpecialSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsSynchroSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsTributeSummoned.yml | 16 ++++++++++++++++ api/functions/Card/IsXyzSummoned.yml | 16 ++++++++++++++++ 11 files changed, 176 insertions(+) create mode 100644 api/functions/Card/IsFlipSummoned.yml create mode 100644 api/functions/Card/IsFusionSummoned.yml create mode 100644 api/functions/Card/IsGeminiSummoned.yml create mode 100644 api/functions/Card/IsLinkSummoned.yml create mode 100644 api/functions/Card/IsNormalSummoned.yml create mode 100644 api/functions/Card/IsPendulumSummoned.yml create mode 100644 api/functions/Card/IsRitualSummoned.yml create mode 100644 api/functions/Card/IsSpecialSummoned.yml create mode 100644 api/functions/Card/IsSynchroSummoned.yml create mode 100644 api/functions/Card/IsTributeSummoned.yml create mode 100644 api/functions/Card/IsXyzSummoned.yml diff --git a/api/functions/Card/IsFlipSummoned.yml b/api/functions/Card/IsFlipSummoned.yml new file mode 100644 index 0000000..a956172 --- /dev/null +++ b/api/functions/Card/IsFlipSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsFlipSummoned +namespace: Card +description: >- + Checks if a card is currently [Flip Summoned](https://yugipedia.com/wiki/Flip_Summon). +summary: Checks if a card is currently Flip Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Flip Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsFusionSummoned.yml b/api/functions/Card/IsFusionSummoned.yml new file mode 100644 index 0000000..e476307 --- /dev/null +++ b/api/functions/Card/IsFusionSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsFusionSummoned +namespace: Card +description: >- + Checks if a card is currently [Fusion Summoned](https://yugipedia.com/wiki/Fusion_Summon). +summary: Checks if a card is currently Fusion Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Fusion Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsGeminiSummoned.yml b/api/functions/Card/IsGeminiSummoned.yml new file mode 100644 index 0000000..5fa1ad2 --- /dev/null +++ b/api/functions/Card/IsGeminiSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsGeminiSummoned +namespace: Card +description: >- + Checks if a card is currently a [Gemini Monster that has been Normal Summoned again](https://yugipedia.com/wiki/Gemini_monster). +summary: Checks if a card is currently a Gemini Monster that has been Normal Summoned again. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently a Gemini Monster that has been Normal Summoned again, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsLinkSummoned.yml b/api/functions/Card/IsLinkSummoned.yml new file mode 100644 index 0000000..2301568 --- /dev/null +++ b/api/functions/Card/IsLinkSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsLinkSummoned +namespace: Card +description: >- + Checks if a card is currently [Link Summoned](https://yugipedia.com/wiki/Link_Summon). +summary: Checks if a card is currently Link Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Link Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsNormalSummoned.yml b/api/functions/Card/IsNormalSummoned.yml new file mode 100644 index 0000000..a7c6c56 --- /dev/null +++ b/api/functions/Card/IsNormalSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsNormalSummoned +namespace: Card +description: >- + Checks if a card is currently [Normal Summoned/Set](https://yugipedia.com/wiki/Normal_Summon). +summary: Checks if a card is currently Normal Summoned/Set. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Normal Summoned/Set, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsPendulumSummoned.yml b/api/functions/Card/IsPendulumSummoned.yml new file mode 100644 index 0000000..6f858e5 --- /dev/null +++ b/api/functions/Card/IsPendulumSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsPendulumSummoned +namespace: Card +description: >- + Checks if a card is currently [Pendulum Summoned](https://yugipedia.com/wiki/Pendulum_Summon). +summary: Checks if a card is currently Pendulum Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Pendulum Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsRitualSummoned.yml b/api/functions/Card/IsRitualSummoned.yml new file mode 100644 index 0000000..f30abc1 --- /dev/null +++ b/api/functions/Card/IsRitualSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsRitualSummoned +namespace: Card +description: >- + Checks if a card is currently [Ritual Summoned](https://yugipedia.com/wiki/Ritual_Summon). +summary: Checks if a card is currently Ritual Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Ritual Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsSpecialSummoned.yml b/api/functions/Card/IsSpecialSummoned.yml new file mode 100644 index 0000000..eb339a0 --- /dev/null +++ b/api/functions/Card/IsSpecialSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsSpecialSummoned +namespace: Card +description: >- + Checks if a card is currently [Special Summoned](https://yugipedia.com/wiki/Special_Summon). +summary: Checks if a card is currently Special Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Special Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsSynchroSummoned.yml b/api/functions/Card/IsSynchroSummoned.yml new file mode 100644 index 0000000..1fa8bf2 --- /dev/null +++ b/api/functions/Card/IsSynchroSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsSynchroSummoned +namespace: Card +description: >- + Checks if a card is currently [Synchro Summoned](https://yugipedia.com/wiki/Synchro_Summon). +summary: Checks if a card is currently Synchro Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Synchro Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsTributeSummoned.yml b/api/functions/Card/IsTributeSummoned.yml new file mode 100644 index 0000000..3ebfe2e --- /dev/null +++ b/api/functions/Card/IsTributeSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsTributeSummoned +namespace: Card +description: >- + Checks if a card is currently [Tribute Summoned/Set](https://yugipedia.com/wiki/Tribute_Summon). +summary: Checks if a card is currently Tribute Summoned/Set. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Tribute Summoned/Set, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file diff --git a/api/functions/Card/IsXyzSummoned.yml b/api/functions/Card/IsXyzSummoned.yml new file mode 100644 index 0000000..29bff82 --- /dev/null +++ b/api/functions/Card/IsXyzSummoned.yml @@ -0,0 +1,16 @@ +---!function +name: IsXyzSummoned +namespace: Card +description: >- + Checks if a card is currently [Xyz Summoned](https://yugipedia.com/wiki/Xyz_Summon). +summary: Checks if a card is currently Xyz Summoned. +parameters: + - name: c + type: [ Card ] + description: The card to check. +returns: + - type: [ bool ] + description: >- + `true` if the card is currently Xyz Summoned, `false` otherwise. +status: { index: stable } +tags: [ card-check ] \ No newline at end of file